diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -55,3 +55,7 @@
 
 * Eigth version revised A. Changed the behaviour of the participles "б" / "ж" so that now they by default are appended to the
 previous word, if any. Added for this a new function participleConc.
+
+## 0.8.2.0 -- 2022-01-13
+
+* Eigth version revised B. Fixed issue with just partially defined participleConc function.
diff --git a/Phonetic/Languages/Ukrainian/PrepareText.hs b/Phonetic/Languages/Ukrainian/PrepareText.hs
--- a/Phonetic/Languages/Ukrainian/PrepareText.hs
+++ b/Phonetic/Languages/Ukrainian/PrepareText.hs
@@ -173,6 +173,7 @@
 participleConc xss@(xs:ys:yss)
   | ys `elem` ["\1073","\1073\1060","\1078\1077","\1078"] = (xs ++ ys):participleConc yss
   | otherwise = xs:participleConc (ys:yss)
+participleConc yss = yss
 
 auxiliary1 :: [String] -> [String]
 auxiliary1 (xs:ys:zs:xss)
diff --git a/phonetic-languages-ukrainian-array.cabal b/phonetic-languages-ukrainian-array.cabal
--- a/phonetic-languages-ukrainian-array.cabal
+++ b/phonetic-languages-ukrainian-array.cabal
@@ -2,7 +2,7 @@
 --  further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                phonetic-languages-ukrainian-array
-version:             0.8.1.0
+version:             0.8.2.0
 synopsis:            Prepares Ukrainian text to be used as a phonetic language text
 description:         Applies needed minimal grammar connections so that the text afterwards can be processed by dobutokO-poetry or phonetic languages approach related programs. Uses arrays instead of vectors. Besides can be used to reverse many of the done concatenations.
 homepage:            https://hackage.haskell.org/package/phonetic-languages-ukrainian-array
