diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,3 +3,8 @@
 ## 0.1.0.0 -- 2020-01-09
 
 * First version. Released on an unsuspecting world.
+
+## 0.1.1.0 -- 2020-01-10
+
+* First version revised A. Added a function show7s2 for the usage in the mmsyn7ukr package.
+
diff --git a/MMSyn7s.hs b/MMSyn7s.hs
--- a/MMSyn7s.hs
+++ b/MMSyn7s.hs
@@ -29,3 +29,6 @@
 show7s :: String -> [String]
 show7s xs = sort . nub . V.toList . V.filter (\x -> x /= "-" && x /= "1" && x /= "0") . convertToProperUkrainian $ xs
   
+-- | Function takes Ukrainian text being a @String@ and returns a @String@ that is shown sorted list of the Ukrainian sounds representations that can be used further in mmsyn7 series of programs.
+show7s2 :: String -> String
+show7s2 xs = show . sort . nub . V.toList . V.filter (\x -> x /= "-" && x /= "1" && x /= "0") . convertToProperUkrainian $ xs
diff --git a/mmsyn7s.cabal b/mmsyn7s.cabal
--- a/mmsyn7s.cabal
+++ b/mmsyn7s.cabal
@@ -2,15 +2,15 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                mmsyn7s
-version:             0.1.0.0
+version:             0.1.1.0
 synopsis:            Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs
 description:         A program and a library that show a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs
 homepage:            https://hackage.haskell.org/package/mmsyn7s
 license:             MIT
 license-file:        LICENSE
-author:              (c) OleksandrZhabenko 2020
+author:              OleksandrZhabenko
 maintainer:          olexandr543@yahoo.com
--- copyright:
+copyright:           (c) OleksandrZhabenko 2020
 category:            Language
 build-type:          Simple
 extra-source-files:  CHANGELOG.md
