diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@
 
 The
 **hpg**
-utility creates passwords of different sizes, between 1 and 2^16 characters. Please note that a
+utility creates passwords of different sizes, between 1 and 2^16 -1 characters. Please note that a
 length of &lt;8 is not very secure and should be avoided. For this reason the default password length
 is 16 if the command is called without any options. The default entropy contains lower and upper
 case letters as well as numbers.
@@ -57,5 +57,3 @@
 # AUTHORS
 
 Fritjof Bornebusch &lt;[fritjof@alokat.org](mailto:fritjof@alokat.org)&gt;
-
-OpenBSD 6.1 - March 21, 2017
diff --git a/hpg.cabal b/hpg.cabal
--- a/hpg.cabal
+++ b/hpg.cabal
@@ -1,9 +1,9 @@
 name:               hpg
-version:            0.7
+version:            0.8
 synopsis:           a simple password generator
 description:        hpg is a free, open source password generator. It's design
                     is pretty simple and it generates random passwords between
-                    1 and 2^16 characters.
+                    1 and 2^16 -1 characters.
 
 homepage:           https://darcs.alokat.org/hpg
 license:            ISC
@@ -38,8 +38,8 @@
   if os(openbsd)
     build-depends:  unix >= 2.7.0.0 && < 2.8 
 
-  build-depends:    base >= 4.8 && < 4.10,
-                    random >= 1.0.1.1 && < 1.2
+  build-depends:    base >= 4.8 && < 4.11,
+                    random >= 1.1 && < 1.2
   
   default-language: Haskell2010
 
