diff --git a/hpg.cabal b/hpg.cabal
--- a/hpg.cabal
+++ b/hpg.cabal
@@ -2,17 +2,9 @@
 -- see http://haskell.org/cabal/users-guide/
 
 name:                hpg
-version:             0.2
+version:             0.3
 synopsis:            no
-description:         hpg is a free ISC licensed password generator.
-                     It can create passwords based on the following
-                     characters:
-                     * upper case letters
-                     * lower case letters
-                     * special characters
-                     * numbers
-                     The password length is limited to 2^16 due to
-                     performance issues.
+description:         the haskell password generator.
 homepage:            https://git.alokat.org/hpg
 license:             ISC
 license-file:        LICENSE
diff --git a/src/Main.hs b/src/Main.hs
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -120,7 +120,7 @@
 create_signs :: [[Char]] -> [Bool] -> [Char]
 create_signs signs [False, False, False, False] = do
     -- default values are upper case and lower case letters
-    create_signs signs [True, True, False, False]
+    create_signs signs [True, True, True, False]
 
 create_signs signs flags = do
     let z = zip signs flags
