diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,10 @@
 # Release history for `chell-hunit`
 
+0.3.0.1 - 2021 Jan 14
+
+  * Support up to GHC 9.2
+  * Tighten various version bounds
+
 0.3 - 2019 Feb 16
 
   * Add support for `HUnit` 1.3 through 1.6
diff --git a/chell-hunit.cabal b/chell-hunit.cabal
--- a/chell-hunit.cabal
+++ b/chell-hunit.cabal
@@ -1,5 +1,7 @@
+cabal-version: 3.0
+
 name: chell-hunit
-version: 0.3
+version: 0.3.0.1
 
 synopsis: HUnit support for the Chell testing library
 category: Testing
@@ -9,7 +11,6 @@
 author: John Millikin <john@john-millikin.com>
 maintainer: Chris Martin, Julie Moronuki
 build-type: Simple
-cabal-version: >= 1.6
 
 homepage:    https://github.com/typeclasses/chell
 bug-reports: https://github.com/typeclasses/chell/issues
@@ -17,8 +18,6 @@
 description:
   HUnit support for the <https://hackage.haskell.org/package/chell Chell> testing library.
 
-tested-with: GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.3
-
 extra-source-files:
   changelog.md
 
@@ -27,10 +26,11 @@
   location: https://github.com/typeclasses/chell.git
 
 library
+  default-language: Haskell2010
   ghc-options: -Wall
 
   build-depends:
-      base >= 4.0 && < 5.0
+      base >= 4.10 && < 4.17
     , chell >= 0.3 && < 0.6
     , HUnit >= 1.3 && < 1.7
 
