diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -132,3 +132,7 @@
 
 * Tenth version revised A. Fixed issue with integer conversions that caused build to fail.
 
+## 0.10.0.2 -- 2023-02-18
+
+* Tenth version revised B. Fixed issue with integer conversions that caused build to fail.
+
diff --git a/Phladiprelio/General/Syllables.hs b/Phladiprelio/General/Syllables.hs
--- a/Phladiprelio/General/Syllables.hs
+++ b/Phladiprelio/General/Syllables.hs
@@ -284,7 +284,7 @@
  -> [PRS]
  -> DListFunctionResult
 divCnsnts ks gs xs@(_:_) = toDLR left xs
-  where !js = fromJust . L.find ((== length xs) . (\(I8# t) -> I# t) . fieldN . infoS) $ gs -- js :: SegmentationRules1
+  where !js = fromJust . L.find ((== length xs) . fromEnum . fieldN . infoS) $ gs -- js :: SegmentationRules1
         !left = resF . fromJust . L.find (eval2Bool . predF). lineFs $ js
 divCnsnts _ _ [] = (id,id)
 
diff --git a/phonetic-languages-phonetics-basics.cabal b/phonetic-languages-phonetics-basics.cabal
--- a/phonetic-languages-phonetics-basics.cabal
+++ b/phonetic-languages-phonetics-basics.cabal
@@ -3,7 +3,7 @@
 -- http://haskell.org/cabal/users-guide/
 
 name:                phonetic-languages-phonetics-basics
-version:             0.10.0.1
+version:             0.10.0.2
 synopsis:            A library for working with generalized phonetic languages usage.
 description:         There already exists a Ukrainian implementation for the phonetic languages approach published at: https://hackage.haskell.org/package/phonetic-languages-simplified-examples-array. It is optimized for the Ukrainian only and needs to be rewritten for every new language mostly from scratch using it as a template. To avoid this boilerplate, this one is provided. It can be used for different languages and even for music or other fields. Now it combines the functionality of the @r-glpk-phonetic-languages-ukrainian-durations@ and @phonetic-languages-ukrainian-array@ and some dependencies of the mentioned one.
 homepage:            https://hackage.haskell.org/package/phonetic-languages-phonetics-basics
