diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 ## Unreleased
 
+## v0.3.3.0 (2024-01-24)
+
++ Added support for GHC 9.8
+
 ## v0.3.2.1 (2023-04-25)
 
 + Added support for GHC 9.6
diff --git a/string-interpolate.cabal b/string-interpolate.cabal
--- a/string-interpolate.cabal
+++ b/string-interpolate.cabal
@@ -1,7 +1,7 @@
 cabal-version: 1.18
 
 name:           string-interpolate
-version:        0.3.2.1
+version:        0.3.3.0
 synopsis:       Haskell string/text/bytestring interpolation that just works
 description:    Unicode-aware string interpolation that handles all textual types.
                 .
@@ -11,7 +11,7 @@
 bug-reports:    https://gitlab.com/williamyaoh/string-interpolate/issues
 author:         William Yao
 maintainer:     williamyaoh@gmail.com
-copyright:      2019-2023 William Yao
+copyright:      2019-2024 William Yao
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
@@ -70,13 +70,13 @@
     if flag(bytestring-builder)
       cpp-options: -DBYTESTRING_BUILDER
     build-depends:
-        base >=4.11
-      , bytestring <0.12
-      , text <2.1
+        base >=4.11 && <5
+      , bytestring <0.13
+      , text <2.2
       , split <0.3
       , haskell-src-exts <1.24
       , haskell-src-meta <0.9
-      , template-haskell <2.21
+      , template-haskell <2.22
       , text-conversions <0.4
       , utf8-string <1.1
     default-language: Haskell2010
@@ -92,9 +92,9 @@
         base ==4.*
       , string-interpolate
       , QuickCheck <2.15
-      , bytestring <0.12
-      , text <2.1
-      , template-haskell <2.21
+      , bytestring <0.13
+      , text <2.2
+      , template-haskell <2.22
       , hspec ==2.*
       , hspec-core ==2.*
       , quickcheck-instances <0.4
@@ -113,9 +113,9 @@
         base ==4.*
       , string-interpolate
       , QuickCheck <2.15
-      , bytestring <0.12
-      , text <2.1
-      , deepseq <1.5
+      , bytestring <0.13
+      , text <2.2
+      , deepseq <1.6
       , criterion <1.7
       , formatting <7.3
       , interpolate <0.3
