diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+v1.1.1.12:
+* Dependency update for GHC 9.8.2 + libraries (PR #45, thanks fgaz)
+* Dependency update for transformers 0.6, GHC 9.6.2 (PR #43, thanks Miezhiko)
+
 v1.1.1.11:
 * Dependency update for base 4.18, GHC 9.4.5 (PR #42, thanks Miezhiko)
 
diff --git a/pointfree.cabal b/pointfree.cabal
--- a/pointfree.cabal
+++ b/pointfree.cabal
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.10
 
 Name:     pointfree
-Version:  1.1.1.11
+Version:  1.1.1.12
 Category: Tool
 Synopsis: Tool for refactoring expressions into pointfree form
 
@@ -17,8 +17,10 @@
 Extra-source-files: ChangeLog README test/Test.hs
 
 Build-type:  Simple
-Tested-with: GHC == 9.0.2, GHC == 9.2.5, GHC == 9.4.5
 
+-- matches the list in .github/workflows/ci.yml
+Tested-with: GHC == 9.0.2, GHC == 9.2.5, GHC == 9.4.5, GHC == 9.6.2, GHC == 9.8.2
+
 Source-repository head
   type:     git
   location: git://github.com/bmillwood/pointfree.git
@@ -27,11 +29,11 @@
   Exposed-modules: Pointfree
   Default-language: Haskell2010
 
-  Build-depends: base >= 4.5 && < 4.19,
+  Build-depends: base >= 4.5 && < 4.20,
                  array >= 0.3 && < 0.6,
-                 containers >= 0.4 && < 0.7,
+                 containers >= 0.4 && < 0.8,
                  haskell-src-exts >= 1.20 && < 1.24,
-                 transformers < 0.6
+                 transformers < 0.7
   Other-modules: Plugin.Pl.Common
                  Plugin.Pl.Parser
                  Plugin.Pl.PrettyPrinter
@@ -44,11 +46,11 @@
   Main-is:       Main.hs
   Default-language: Haskell2010
   GHC-options:   -W
-  Build-depends: base >= 4.5 && < 4.19,
+  Build-depends: base >= 4.5 && < 4.20,
                  array >= 0.3 && < 0.6,
-                 containers >= 0.4 && < 0.7,
+                 containers >= 0.4 && < 0.8,
                  haskell-src-exts >= 1.20 && < 1.24,
-                 transformers < 0.6
+                 transformers < 0.7
   Other-modules: Plugin.Pl.Common
                  Plugin.Pl.Parser
                  Plugin.Pl.PrettyPrinter
@@ -68,13 +70,13 @@
                  Plugin.Pl.Transform
 
   Build-depends:
-    base >= 4.5 && < 4.19,
+    base >= 4.5 && < 4.20,
     array >= 0.3 && < 0.6,
-    containers >= 0.4 && < 0.7,
+    containers >= 0.4 && < 0.8,
     haskell-src-exts >= 1.20 && < 1.24,
     HUnit >= 1.6 && < 1.7,
     QuickCheck >= 2.11 && < 2.15,
-    transformers < 0.6
+    transformers < 0.7
 
   Default-language: Haskell2010
   GHC-Options:    -W
