diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -3,3 +3,7 @@
 ## 0.1.0.0 -- 2020-08-30
 
 * First version. Released on an unsuspecting world.
+
+## 0.2.0.0 -- 2020-09-09
+
+* Second version. Fixed issue with the wrong arguments order in the Languages.UniquenessPeriods.Vector.StrictV.uniquenessVariants2GN function. 
diff --git a/Languages/UniquenessPeriods/Vector/StrictV.hs b/Languages/UniquenessPeriods/Vector/StrictV.hs
--- a/Languages/UniquenessPeriods/Vector/StrictV.hs
+++ b/Languages/UniquenessPeriods/Vector/StrictV.hs
@@ -29,7 +29,7 @@
 -- | Given a [a] consisting of no more than 7 sublists interspersed with the elements of the first argument, 
 -- it returns a 'V.Vector' of possible combinations without repeating of the sublists in different order and for each of them appends also 
 -- the information about generalized \"uniqueness periods\" (see @uniqueness-periods-vector@ package) to it and finds out 
--- some different metrics -- named \"norms\". 
+-- some different metrics -- named \"properties\". 
 -- 
 -- Afterwards, depending on these norms some (usually phonetic for the words) properties of the sublists can be specified that 
 -- allow to use them for special cases of repetitions (usually, for the words -- poetically or to create a varied melody with them). 
@@ -40,7 +40,7 @@
   -> (V.Vector c -> [b])
   -> [a] 
   -> V.Vector ([b],V.Vector b, [a])
-uniquenessVariants2GN whspss vN g1 g2 !xs = uniquenessVariants2GNP whspss [] [] vN g1 g2 xs 
+uniquenessVariants2GN whspss vN g1 g2 !xs = uniquenessVariants2GNP [] [] whspss vN g1 g2 xs 
 {-# INLINE uniquenessVariants2GN #-}
         
 -- | Generalized variant of 'uniquenessVariants2GN' with prepending and appending @[a]@ (given as the first and the second argument). 
diff --git a/uniqueness-periods-vector-common.cabal b/uniqueness-periods-vector-common.cabal
--- a/uniqueness-periods-vector-common.cabal
+++ b/uniqueness-periods-vector-common.cabal
@@ -2,7 +2,7 @@
 --   For further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                uniqueness-periods-vector-common
-version:             0.1.0.0
+version:             0.2.0.0
 synopsis:            Generalization of the dobutokO-poetry-general package functionality
 description:         Generalization of the dobutokO-poetry-general package functionality. Can be used to rearrange 7 sublists in the list to obtain somewhat more suitable list for some purposes.
 homepage:            https://hackage.haskell.org/package/uniqueness-periods-vector-common
