diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,7 @@
+# 1.1.21
+
+- Increase upper bounds on `base` and `lens`.
+
 # 1.1.19
 
 - Builds with `aeson-0.11`.
diff --git a/digestive-functors-aeson.cabal b/digestive-functors-aeson.cabal
--- a/digestive-functors-aeson.cabal
+++ b/digestive-functors-aeson.cabal
@@ -1,6 +1,6 @@
 name: digestive-functors-aeson
 category: Web, JSON
-version: 1.1.20
+version: 1.1.21
 license: GPL-3
 license-file: LICENSE
 author: Oliver Charles
@@ -27,11 +27,11 @@
   exposed-modules:
     Text.Digestive.Aeson
   build-depends:
-    aeson >= 0.7 && < 0.12,
+    aeson >= 0.7 && < 1.2,
     base >= 4.5 && < 5,
     containers >= 0.5,
     digestive-functors >= 0.7 && < 0.9,
-    lens >= 4.4 && < 4.15,
+    lens >= 4.4 && < 4.16,
     lens-aeson >= 1 && < 1.1,
     safe >= 0.3.3,
     text >= 0.11,
diff --git a/src/Text/Digestive/Aeson.hs b/src/Text/Digestive/Aeson.hs
--- a/src/Text/Digestive/Aeson.hs
+++ b/src/Text/Digestive/Aeson.hs
@@ -33,7 +33,7 @@
 >     import Text.Digestive.Aeson (digestJSON)
 >     ...
 >     Just parsedJson <- maybeResult . parse json <$> fetchJsonText
->     digestJSON "" myForm parsedJson
+>     digestJSON myForm parsedJson
 -}
 digestJSON :: Monad m
            => Form v m a
