diff --git a/simple-genetic-algorithm.cabal b/simple-genetic-algorithm.cabal
--- a/simple-genetic-algorithm.cabal
+++ b/simple-genetic-algorithm.cabal
@@ -2,7 +2,7 @@
 -- further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                simple-genetic-algorithm
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            Simple parallel genetic algorithm implementation
 description:         Simple parallel genetic algorithm implementation
 homepage:            http://eax.me/haskell-genetic-algorithm/
@@ -23,7 +23,7 @@
 library
   exposed-modules:     GA.Simple
   ghc-options:         -O2 -Wall -fno-warn-missing-signatures
-  build-depends:       base >=4.5 && < 4.7,
+  build-depends:       base >=4.5 && < 4.8,
                        random >= 1.0 && < 1.1,
                        parallel >= 3.2 && < 3.3
   hs-source-dirs:      src
@@ -32,7 +32,7 @@
 executable ga-sin-example
   ghc-options:         -O2 -Wall -fno-warn-missing-signatures -threaded -rtsopts
   main-is:             MainSin.hs
-  build-depends:       base >= 4.5 && < 4.7,
+  build-depends:       base >= 4.5 && < 4.8,
                        random >= 1.0 && < 1.1,
                        deepseq >= 1.3 && < 1.4,
                        parallel >= 3.2 && < 3.3
diff --git a/src/GA/Simple.hs b/src/GA/Simple.hs
--- a/src/GA/Simple.hs
+++ b/src/GA/Simple.hs
@@ -1,4 +1,4 @@
--- | Simple parallel genetic algorithm implementation.
+-- | [Проверка проверка] Simple parallel genetic algorithm implementation.
 module GA.Simple (
     Chromosome(..),
     runGA,
