diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,4 +27,9 @@
 * Second version revised A. Fixed issues with wrongly parsed sounds that are represented
 by two letters ("дж", "дз", "сь", "ць").
 
+## 0.2.2.0 -- 2020-01-13
+
+* Second version revised B. Simplified the main function using the simlified version of
+the ReplaceP mudule in the mmsyn7ukr package.
+
 
diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -15,7 +15,7 @@
 import qualified Data.Vector as V
 import CaseBi (getBFst')
 import System.Environment (getArgs)
-import ReplaceP (replaceP, replaceP2, replaceP3)
+import ReplaceP (replaceP, replaceP4)
 
 -- | The main and the only one function in the module. If you specify a one command line argument, which can be obtained by running @mmsyn7s@ program
 -- with the needed to be sounded (with sound representations) Ukrainian text (please, refer to: https://hackage.haskell.org/package/mmsyn7s).
@@ -39,7 +39,7 @@
       let xs = take 1 $ args
           rrs = show xs
           list = read (replaceP rrs)::[String]
-          zss = read (replaceP3 . replaceP2 . show $ list)::[String]
+          zss = read (replaceP4 . show $ list)::[String]
           wws = map (getBFst' ("0.wav", V.fromList . zip ["а","б","в","г","д","дж","дз","е","ж","з","и","й","к","л","м","н","о","п","р","с",
                        "сь","т","у","ф","х","ц","ць","ч","ш","ь","і","ґ"] $ ["A.wav", "B.wav", "C.wav", "D.wav", "E.wav", "F.wav", "G.wav", "H.wav", 
                          "I.wav", "J.wav", "K.wav", "L.wav", "M.wav", "N.wav", "O.wav", "P.wav", "Q.wav", "R.wav", 
diff --git a/mmsyn7l.cabal b/mmsyn7l.cabal
--- a/mmsyn7l.cabal
+++ b/mmsyn7l.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                mmsyn7l
-version:             0.2.1.0
+version:             0.2.2.0
 synopsis:            Modifies the amplitude of the sound representations for the Ukrainian language created by mmsyn7ukr package.
 description:         A program and a library to modify the amplitude of the sound representations for the Ukrainian language created by mmsyn7ukr package or somehow otherwise.
 homepage:            https://hackage.haskell.org/package/mmsyn7l
