diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for blucontrol
 
+## 0.7.1.0 *16 Jan 2024*
+
+* Support GHC 9.6.
+
 ## 0.7.0.0 *19 Jul 2021*
 
 * `MonadGamma` has been renamed to `MonadPrepareValue`.
diff --git a/blucontrol.cabal b/blucontrol.cabal
--- a/blucontrol.cabal
+++ b/blucontrol.cabal
@@ -1,5 +1,5 @@
 name:                blucontrol
-version:             0.7.0.0
+version:             0.7.1.0
 synopsis:            Configurable blue light filter
 description:         This application is a blue light filter, with the main focus on
                      configurability.
@@ -54,16 +54,16 @@
                      , data-default      >= 0.7.1   && < 0.7.2
                      , deepseq           >= 1.4.4.0 && < 1.5
                      , filepath          >= 1.4.2.1 && < 1.5
-                     , finite-typelits   >= 0.1.4.0 && < 0.1.5
+                     , finite-typelits   >= 0.1.4.0 && < 0.1.7
                      , lifted-base       >= 0.2.3.2 && < 0.2.4
                      , monad-control     >= 1.0.2.0 && < 1.1
-                     , mtl               >= 2.2.2   && < 2.3
+                     , mtl               >= 2.2.2   && < 2.4
                      , process           >= 1.6.6.0 && < 1.7
-                     , text              >= 1.2.0.0 && < 1.3
-                     , time              >= 1.9.3   && < 1.10
-                     , transformers      >= 0.5.6.2 && < 0.5.7
+                     , text              >= 1.2.0.0 && < 2.1
+                     , time              >= 1.9.3   && < 1.13
+                     , transformers      >= 0.5.6.2 && < 0.7
                      , transformers-base >= 0.4.5.2 && < 0.5
-                     , unix              >= 2.7.2.2 && < 2.8
+                     , unix              >= 2.7.2.2 && < 2.9
                      , X11               >= 1.9     && < 2
   hs-source-dirs:      src
   includes:            XrandrGamma.h
diff --git a/src/Blucontrol/Monad/Control/Count.hs b/src/Blucontrol/Monad/Control/Count.hs
--- a/src/Blucontrol/Monad/Control/Count.hs
+++ b/src/Blucontrol/Monad/Control/Count.hs
@@ -8,6 +8,7 @@
 ) where
 
 import Control.DeepSeq
+import Control.Monad
 import Control.Monad.Base
 import Control.Monad.Trans.Control
 import Control.Monad.Trans.Control.Default
