diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+### 0.13.17 [2026.01.10]
+* Allow building with `template-haskell-2.24.*` (GHC 9.14).
+* Remove unused `ghc-prim` dependency in the test suite.
+
 ### 0.13.16 [2024.12.05]
 * Support building with `template-haskell-2.23.0`.
 
diff --git a/test/TestUtil.hs b/test/TestUtil.hs
--- a/test/TestUtil.hs
+++ b/test/TestUtil.hs
@@ -9,7 +9,7 @@
 import Language.Haskell.TH.Syntax
 import qualified Data.ByteString as BS
 import qualified Data.ByteString.Internal as BS
-import GHC.Prim (Addr#)
+import GHC.Exts (Addr#)
 import GHC.ForeignPtr (newForeignPtr_)
 import GHC.Ptr (Ptr(Ptr))
 
diff --git a/th-orphans.cabal b/th-orphans.cabal
--- a/th-orphans.cabal
+++ b/th-orphans.cabal
@@ -1,5 +1,5 @@
 name:               th-orphans
-version:            0.13.16
+version:            0.13.17
 cabal-version:      >= 1.10
 build-type:         Simple
 license:            BSD3
@@ -19,10 +19,11 @@
                   , GHC == 9.0.2
                   , GHC == 9.2.8
                   , GHC == 9.4.8
-                  , GHC == 9.6.6
+                  , GHC == 9.6.7
                   , GHC == 9.8.4
-                  , GHC == 9.10.1
-                  , GHC == 9.12.1
+                  , GHC == 9.10.3
+                  , GHC == 9.12.2
+                  , GHC == 9.14.1
 synopsis:           Orphan instances for TH datatypes
 description:        Orphan instances for TH datatypes.  In particular, instances
                     for Ord and Lift, as well as a few missing Show / Eq.  These
@@ -32,7 +33,7 @@
 
 library
   build-depends:      base >= 4.9 && < 5,
-                      template-haskell >= 2.11 && < 2.24,
+                      template-haskell >= 2.11 && < 2.25,
                       th-compat >= 0.1 && < 0.2,
                       -- https://github.com/mboes/th-lift/issues/14
                       th-lift >= 0.7.1,
@@ -53,7 +54,6 @@
   other-modules:      TestUtil
   build-depends:      base,
                       bytestring,
-                      ghc-prim,
                       hspec,
                       template-haskell,
                       th-lift,
