diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
 # Revision history for breakpoint
 
+## 0.1.3.1 -- 2024-02-25
+* Bump `ansi-terminal` bounds
+
 ## 0.1.3.0 -- 2023-10-28
 * Support GHC 9.8.x
 * Drop support for GHC 8.10.x and 9.0.x
diff --git a/breakpoint.cabal b/breakpoint.cabal
--- a/breakpoint.cabal
+++ b/breakpoint.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               breakpoint
-version:            0.1.3.0
+version:            0.1.3.1
 synopsis:
   Set breakpoints using a GHC plugin
 
@@ -42,7 +42,7 @@
                       pretty-simple >= 4.1.2 && < 4.2,
                       text >= 1.2.5 && < 2.2,
                       template-haskell >= 2.18.0 && < 2.22,
-                      ansi-terminal >= 1.0 && < 1.1,
+                      ansi-terminal >= 1.0 && < 2.0,
                       deepseq >= 1.0 && < 1.6
     hs-source-dirs:   src
     default-language: Haskell2010
@@ -56,8 +56,9 @@
   build-depends: base, tasty, tasty-hunit, breakpoint, containers
   type: exitcode-stdio-1.0
   default-language: Haskell2010
-  ghc-options: -fplugin Debug.Breakpoint
-
+  ghc-options:
+    -fplugin Debug.Breakpoint
+    -Wno-x-partial
 -- executable play
 --   main-is: Main.hs
 --   hs-source-dirs: play
