diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# [0.1.1.0] -- 2025-04-22
+
+[0.1.1.0]: https://github.com/GaloisInc/oughta/releases/tag/v0.1.1.0
+
+- Add support for GHC 9.6 and 9.4.
+
 # [0.1.0.0] -- 2025-04-22
 
 [0.1.0.0]: https://github.com/GaloisInc/oughta/releases/tag/v0.1.0.0
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -247,3 +247,13 @@
 and Haskell APIs are considered to be part of the public interface.
 
 [pvp]: https://pvp.haskell.org/
+
+## GHC support policy
+
+We support at least three versions of GHC at a time. We are not aggressive about
+dropping older versions, but will generally do so for versions outside of the
+support window if either (1) maintaining that support would require significant
+effort, such as significant numbers of C pre-processor `ifdef` sections or Cabal
+`if` sections, or (2) the codebase could benefit significantly from features
+that are only available on more recent versions of GHC. We try to support new
+versions as soon as they are supported by the libraries that we depend on.
diff --git a/oughta.cabal b/oughta.cabal
--- a/oughta.cabal
+++ b/oughta.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.4
 name: oughta
-version: 0.1.0.0
+version: 0.1.1.0
 author: Galois, Inc.
 maintainer: grease@galois.com
 copyright: Galois, Inc. 2025
@@ -26,7 +26,7 @@
 
 common shared
   default-language: GHC2021
-  build-depends: base >= 4.19 && < 5
+  build-depends: base >= 4.17 && < 5
 
   -- Specifying -Wall and -Werror can cause the project to fail to build on
   -- newer versions of GHC simply due to new warnings being added to -Wall. To
