diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for taskwarrior
 
+## 0.6.0.7 (2025-03-05)
+
+* Bump bounds
+
 ## 0.6.0.6 (2023-07-31)
 
 * Bump upper bounds on hspec, aeson and bytestring
diff --git a/src/Taskwarrior/IO.hs b/src/Taskwarrior/IO.hs
--- a/src/Taskwarrior/IO.hs
+++ b/src/Taskwarrior/IO.hs
@@ -134,6 +134,7 @@
 -- | Like onAddPure with side effects.
 onAdd :: (Task -> IO Task) -> IO ()
 onAdd f =
-  LBSC.putStrLn . Aeson.encode =<< f
+  LBSC.putStrLn . Aeson.encode
+    =<< f
     =<< readTaskLine
       "OnAdd hook couldn‘t parse task."
diff --git a/taskwarrior.cabal b/taskwarrior.cabal
--- a/taskwarrior.cabal
+++ b/taskwarrior.cabal
@@ -1,10 +1,7 @@
 cabal-version:      2.4
 name:               taskwarrior
 
--- PVP summary:     +-+------- breaking API changes
---                  | | +----- non-breaking API additions
---                  | | | +--- code changes with no API change
-version: 0.6.0.6
+version: 0.6.0.7
 synopsis:           Types and aeson instances for taskwarrior tasks
 description:
   Types and aeson instances for the https://taskwarrior.org task import/export feature
@@ -46,13 +43,13 @@
 
   build-depends:
     , aeson                 >=2.0.0.0  && < 2.3
-    , base                  >=4.11     && < 4.19
+    , base                  >=4.11     && < 4.22
     , bytestring            >=0.10.8.2 && < 0.13
-    , containers            >=0.5.0.0  && < 0.7
+    , containers            >=0.5.0.0  && < 0.8
     , process               ^>=1.6.5.0
-    , random                >=1.1      && < 1.3
-    , text                  >=1.2.3.0  && < 2.1
-    , time                  >=1.8.0.2  && < 1.14
+    , random                >=1.1      && < 1.4
+    , text                  >=1.2.3.0  && < 2.2
+    , time                  >=1.8.0.2  && < 1.15
     , uuid                  ^>=1.3.13
 
   hs-source-dirs:     src
@@ -70,7 +67,7 @@
     , base
     , containers
     , hspec                 >=2.7.1 && < 2.12
-    , QuickCheck            >=2.13.2 && <2.15
+    , QuickCheck            >=2.13.2 && <2.16
     , quickcheck-instances  ^>=0.3.22
     , taskwarrior
     , text
