diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,3 +5,8 @@
 * First version. Released on an unsuspecting world. Is taken from the phonetic-languages-simplified-properties-array
 package.
 
+## 0.2.0.0 -- 2022-08-09
+
+* The second version. Updated the dependencies so that now the Ukrainian syllable segmentation is treated more properly.
+Changed the structure of the non-sound Ukraninian symbols representation (now they are converted to one of the [100,101,102]).
+
diff --git a/Phonetic/Languages/Array/Ukrainian/Common.hs b/Phonetic/Languages/Array/Ukrainian/Common.hs
--- a/Phonetic/Languages/Array/Ukrainian/Common.hs
+++ b/Phonetic/Languages/Array/Ukrainian/Common.hs
@@ -101,6 +101,6 @@
 {-# INLINE eval23KF #-}
 
 words1 xs = if null ts then [] else w : words1 s'' -- Practically this is an optimized versio>
-  where ts = dropWhile (< 1) xs
-        (w, s'') = span (> 0) ts
+  where ts = dropWhile (> 99) xs
+        (w, s'') = span (< 100) ts
 {-# NOINLINE words1 #-}
diff --git a/phonetic-languages-simplified-properties-array-common.cabal b/phonetic-languages-simplified-properties-array-common.cabal
--- a/phonetic-languages-simplified-properties-array-common.cabal
+++ b/phonetic-languages-simplified-properties-array-common.cabal
@@ -1,5 +1,5 @@
 name:                phonetic-languages-simplified-properties-array-common
-version:             0.1.0.0
+version:             0.2.0.0
 synopsis:            Common functionality for 'with-tuples' and old version of properties. 
 description:         The common functionality for phonetic-languages-simplified-properties-array and phonetic-languages-simplified-properties-array-old packages.
 homepage:            https://hackage.haskell.org/package/phonetic-languages-simplified-properties-array-common
@@ -17,6 +17,6 @@
   exposed-modules:     Phonetic.Languages.Array.Ukrainian.Common
   -- other-modules:
   other-extensions:    BangPatterns, CPP
-  build-depends:       base >=4.8 && <5, phonetic-languages-rhythmicity ==0.9.2.0, phonetic-languages-basis ==0.1.0.0
+  build-depends:       base >=4.8 && <5, phonetic-languages-rhythmicity ==0.9.2.0, phonetic-languages-basis ==0.1.1.0
   -- hs-source-dirs:
   default-language:    Haskell2010
