diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,5 +1,11 @@
 -*-Changelog-*-
 
+1.0.0.3  Mar 2015
+	* Relaxed upper bounds again.
+
+1.0.0.2  Dec 2014
+	* Relaxed upper bounds again.
+
 1.0.0.1  Dec 2014
 	* Relaxed upper bounds for GHC 7.10
 
diff --git a/wordpass.cabal b/wordpass.cabal
--- a/wordpass.cabal
+++ b/wordpass.cabal
@@ -1,5 +1,5 @@
 name:                wordpass
-version:             1.0.0.2
+version:             1.0.0.3
 synopsis:            Dictionary-based password generator
 description:         This script reads dict word lists and generates word-based passwords.
                      Not unlike <http://xkcd.com/936/ Xkcd>.
@@ -22,7 +22,7 @@
 extra-source-files:  README.md changelog
 cabal-version:       >=1.10
 stability:           stable
-tested-with:         GHC==7.6.3,GHC==7.8.3
+tested-with:         GHC==7.8.3
 
 source-repository head
   type:     git
@@ -30,36 +30,36 @@
 
 executable wordpass
   main-is:             WordPass.hs
-  other-modules:    Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass
+  other-modules:       Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass
   other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances
-  build-depends:       base          >=4.6  && <4.9,
-                       text          >=1.1  && <1.3,
+  build-depends:       base          >=4.4  && <4.9,
+                       text          >=1.1  && <1.4,
                        containers    >=0.5  && <0.6,
                        random-fu     >=0.2  && <0.3,
                        random-source >=0.3  && <0.4,
                        vector        >=0.10 && <0.11,
                        directory     >= 1.2 && <1.4,
                        unix-compat   >= 0.4 && <0.5,
-                       deepseq       >= 1.3 && <1.4,
-                       filepath      >= 1.3 && <1.4,
+                       deepseq       >= 1.3 && <1.5,
+                       filepath      >= 1.3 && <1.5,
                        hflags        >= 0.4 && <0.5
   ghc-options:         -O3 
   -- hs-source-dirs:      
   default-language:    Haskell2010
 
 library
-  exposed-modules:    Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass
+  exposed-modules:     Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass
   other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances
-  build-depends:       base          >=4.6  && <4.9,
-                       text          >=1.1  && <1.3,
+  build-depends:       base          >=4.4  && <4.9,
+                       text          >=1.1  && <1.4,
                        containers    >=0.5  && <0.6,
                        random-fu     >=0.2  && <0.3,
                        random-source >=0.3  && <0.4,
                        vector        >=0.10 && <0.11,
                        directory     >= 1.2 && <1.4,
                        unix-compat   >= 0.4 && <0.5,
-                       deepseq       >= 1.3 && <1.4,
-                       filepath      >= 1.3 && <1.4
+                       deepseq       >= 1.3 && <1.5,
+                       filepath      >= 1.3 && <1.5
   ghc-options:         -O3 
   -- hs-source-dirs:      
   default-language:    Haskell2010
