diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## Version 0.11.0.2 (17 Feb 2015)
+
+- Updated dependency bounds.
+
 ## Version 0.11.0.1 (5 Oct 2014)
 
 - Updated documentation.
diff --git a/Options/Applicative/Builder.hs b/Options/Applicative/Builder.hs
--- a/Options/Applicative/Builder.hs
+++ b/Options/Applicative/Builder.hs
@@ -278,7 +278,7 @@
 nullOption :: ReadM a -> Mod OptionFields a -> Parser a
 nullOption = option
 
--- | Builder for an option using the 'auto' reader.
+-- | Builder for an option using the given reader.
 option :: ReadM a -> Mod OptionFields a -> Parser a
 option r m = mkParser d g rdr
   where
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -20,9 +20,17 @@
 
 ## Getting started
 
+Install with
+
+```sh
+cabal install optparse-applicative
+```
+
 Here is a simple example of an applicative option parser:
 
 ```haskell
+import Options.Applicative
+
 data Sample = Sample
   { hello :: String
   , quiet :: Bool }
diff --git a/optparse-applicative.cabal b/optparse-applicative.cabal
--- a/optparse-applicative.cabal
+++ b/optparse-applicative.cabal
@@ -1,5 +1,5 @@
 name:                optparse-applicative
-version:             0.11.0.1
+version:             0.11.0.2
 synopsis:            Utilities and combinators for parsing command line options
 description:
     Here is a simple example of an applicative option parser:
@@ -111,6 +111,6 @@
   ghc-options:         -Wall
   build-depends:       base == 4.*,
                        transformers >= 0.2 && < 0.5,
-                       transformers-compat == 0.3.*,
+                       transformers-compat >= 0.3 && < 0.5,
                        process >= 1.0 && < 1.3,
                        ansi-wl-pprint >= 0.6 && < 0.7
