diff --git a/AI/SimpleEA.hs b/AI/SimpleEA.hs
--- a/AI/SimpleEA.hs
+++ b/AI/SimpleEA.hs
@@ -134,10 +134,11 @@
 >numOnes :: FitnessFunc Char
 >numOnes g _ = (fromIntegral . length . filter (=='1')) g
 
-The @select@ function is our 'SelectionFunction'. It uses sigma-scaled, fitness-proportionate
-selection. 'sigmaScale' is defined in 'SimpleEA.Utils'. By first taking the four
-best genomes (by using the @elite@ function) we make sure that maximum fitness
-never decreases ('elitism').
+The @select@ function is our 'SelectionFunction'. It uses sigma-scaled,
+fitness-proportionate selection. 'sigmaScale' is defined in
+'AI.SimpleEA.Utils'. By first taking the four best genomes (by using the
+@elite@ function) we make sure that maximum fitness never decreases
+('elitism').
 
 >select :: SelectionFunction Char
 >select gs = select' (take 4 $ elite gs)
diff --git a/SimpleEA.cabal b/SimpleEA.cabal
--- a/SimpleEA.cabal
+++ b/SimpleEA.cabal
@@ -1,7 +1,7 @@
 name:               SimpleEA
 category:           AI
 build-type:         Simple
-version:            0.2
+version:            0.2.1
 synopsis:           Simple evolutionary algorithm framework.
 description:        Simple framework for running an evolutionary algorithm by
                     providing selection, recombination, and mutation operators.
