diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+1.0.0.2
+
+* Add a base >= 4.5 constraint because monad-control only builds on GHC >= 7.4.
+
+
 1.0.0.1
 
 * Use Safe instead of Trustworthy.
diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -12,6 +12,6 @@
 The package includes a copy of the `monad-peel` testsuite written by
 Anders Kaseorg The tests can be performed by using `cabal test`.
 
-[This `critertion`](https://github.com/basvandijk/bench-monad-peel-control)
+[This `criterion`](https://github.com/basvandijk/bench-monad-peel-control)
 based benchmark shows that `monad-control` is on average about 2.5
 times faster than `monad-peel`.
diff --git a/monad-control.cabal b/monad-control.cabal
--- a/monad-control.cabal
+++ b/monad-control.cabal
@@ -1,5 +1,5 @@
 Name:                monad-control
-Version:             1.0.0.1
+Version:             1.0.0.2
 Synopsis:            Lift control operations, like exception catching, through monad transformers
 License:             BSD3
 License-file:        LICENSE
@@ -40,7 +40,7 @@
 Library
   Exposed-modules: Control.Monad.Trans.Control
 
-  Build-depends: base                 >= 3     && < 5
+  Build-depends: base                 >= 4.5   && < 5
                , stm                  >= 2.3   && < 3
                , transformers-base    >= 0.4.3 && < 0.5
                , transformers         >= 0.2   && < 0.5
