diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
 
 ## Unreleased
 
+## v0.3.2.0 (2022-12-12)
+
++ Added support for GHC 9.4
+
 ## v0.3.1.2 (2022-05-15)
 
 + Updated dependency versions for HSpec and template-haskell
diff --git a/bench/bench.hs b/bench/bench.hs
--- a/bench/bench.hs
+++ b/bench/bench.hs
@@ -8,6 +8,7 @@
 {-# LANGUAGE QuasiQuotes       #-}
 {-# LANGUAGE RankNTypes        #-}
 {-# LANGUAGE TypeApplications  #-}
+{-# LANGUAGE TypeOperators     #-}
 
 import Criterion      ( Benchmark, bench, bgroup, env, nf )
 import Criterion.Main ( defaultMain )
diff --git a/src/lib/Data/String/Interpolate/Conversion.hs b/src/lib/Data/String/Interpolate/Conversion.hs
--- a/src/lib/Data/String/Interpolate/Conversion.hs
+++ b/src/lib/Data/String/Interpolate/Conversion.hs
@@ -14,6 +14,7 @@
 {-# LANGUAGE PackageImports        #-}
 {-# LANGUAGE Strict                #-}
 {-# LANGUAGE TypeFamilies          #-}
+{-# LANGUAGE TypeOperators         #-}
 {-# LANGUAGE UndecidableInstances  #-}
 
 module Data.String.Interpolate.Conversion
diff --git a/src/lib/Data/String/Interpolate/Conversion/Classes.hs b/src/lib/Data/String/Interpolate/Conversion/Classes.hs
--- a/src/lib/Data/String/Interpolate/Conversion/Classes.hs
+++ b/src/lib/Data/String/Interpolate/Conversion/Classes.hs
@@ -1,6 +1,7 @@
 {-# LANGUAGE DataKinds             #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE TypeFamilies          #-}
+{-# LANGUAGE TypeOperators         #-}
 
 module Data.String.Interpolate.Conversion.Classes
   ( B(..)
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.1.2
+version:        0.3.2.0
 synopsis:       Haskell string/text/bytestring interpolation that just works
 description:    Unicode-aware string interpolation that handles all textual types.
                 .
@@ -72,11 +72,11 @@
     build-depends:
         base >=4.11
       , bytestring <0.12
-      , text <1.3
+      , text <2.1
       , split <0.3
       , haskell-src-exts <1.24
       , haskell-src-meta <0.9
-      , template-haskell <2.19
+      , template-haskell <2.20
       , text-conversions <0.4
       , utf8-string <1.1
     default-language: Haskell2010
@@ -93,8 +93,8 @@
       , string-interpolate
       , QuickCheck <2.15
       , bytestring <0.12
-      , text <1.3
-      , template-haskell <2.19
+      , text <2.1
+      , template-haskell <2.20
       , hspec <2.11
       , hspec-core <2.11
       , quickcheck-instances <0.4
@@ -114,10 +114,10 @@
       , string-interpolate
       , QuickCheck <2.15
       , bytestring <0.12
-      , text <1.3
+      , text <2.1
       , deepseq <1.5
-      , criterion <1.6
-      , formatting <7.2
+      , criterion <1.7
+      , formatting <7.3
       , interpolate <0.3
       , neat-interpolation <0.6
     if flag(extended-benchmarks)
