diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).
 
+## [0.1.0.1] - 2020-11-29
+
+### Fixed
+- Reconcile `tested-with` field with `base` constraints. This package now
+  supports _and_ is tested with GHC `8.2.2` through to `8.10.1`. And this is
+  checked in CI.
+
 ## [0.1.0.0] - 2020-11-29
 
 First cabal release 🎉🥳
diff --git a/kesha.cabal b/kesha.cabal
--- a/kesha.cabal
+++ b/kesha.cabal
@@ -1,7 +1,7 @@
 cabal-version: >= 1.10
 
 name: kesha
-version: 0.1.0.0
+version: 0.1.0.1
 synopsis: Haskell implementation of nix-hash
 description: Compute the cryptographic hash of a path, à la <https://nixos.org/ Nix>.
 homepage: https://github.com/jmackie/kesha
@@ -18,7 +18,6 @@
   CHANGELOG.md
 
 tested-with:
-  GHC == 8.0.2,
   GHC == 8.2.2,
   GHC == 8.4.4,
   GHC == 8.6.5,
@@ -42,8 +41,7 @@
     Kesha.NAR
   build-depends:
     -- https://wiki.haskell.org/Base_package
-    -- >= 8.2.2 && < 8.9
-    base >= 4.10.1 && < 4.14,
+    base >= 4.10.1 && < 4.15,
 
     -- core libraries
     binary >= 0.8.6 && < 0.9,
