diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Changelog
 
+## 0.2.0.1
+- Widen dependency bounds to support GHC 9.12.2.
+
 ## 0.2.0
 - Move the public API to `Data.JSON.JSONSchema` and supporting machinery to `Data.JSON.ToJSONSchema`.
 - Tighten derived record/sum schemas to emit `required` arrays and discriminator requirements.
diff --git a/jsonschema.cabal b/jsonschema.cabal
--- a/jsonschema.cabal
+++ b/jsonschema.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.2
 name:               jsonschema
-version:            0.2.0.0
+version:            0.2.0.1
 license:            MPL-2.0
 license-file:       LICENSE
 author:             DPella AB
@@ -18,6 +18,7 @@
 homepage:          https://github.com/DPella/jsonschema
 bug-reports:       https://github.com/DPella/jsonschema/issues
 category:          Data, JSON
+tested-with:       GHC == 9.6, GHC == 9.12
 
 library
   default-language:
@@ -41,13 +42,13 @@
     Data.JSON.ToJSONSchema
     JSONSchema.Validation
   build-depends:
-      base >=4.18 && <4.19
-    , text >= 2.0 && <2.1
+      base >=4.18 && <4.22
+    , text >= 2.0 && <2.2
     , aeson >= 2.2 && <2.3
-    , containers >= 0.6.7 && <0.6.8
+    , containers >= 0.6.7 && <0.9
     , vector >=0.13 && < 0.14
-    , scientific >= 0.3.8 && <0.3.9
-    , regex-tdfa >= 1.3.2 && <1.3.3
+    , scientific >= 0.3.8 && <0.4
+    , regex-tdfa >= 1.3.2 && <1.4
 
 
 test-suite test-jsonschema
@@ -61,7 +62,7 @@
   other-modules:
     JSONSchema.Spec
   build-depends:
-      base >=4.18 && <4.19
+      base >=4.18 && <4.22
     , jsonschema
     , aeson
     , text
