diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+0.8.8.4
+=======
+* Fix build on GHC 9.6 and below [#160](https://github.com/Soostone/katip/pull/160)
+
 0.8.8.3
 =======
 * Don't rely on package names in `getLoc` [#159](https://github.com/Soostone/katip/pull/159)
diff --git a/katip.cabal b/katip.cabal
--- a/katip.cabal
+++ b/katip.cabal
@@ -1,5 +1,5 @@
 name:                katip
-version:             0.8.8.3
+version:             0.8.8.4
 synopsis:            A structured logging framework.
 description:
   Katip is a structured logging framework. See README.md for more details.
diff --git a/src/Katip/Core.hs b/src/Katip/Core.hs
--- a/src/Katip/Core.hs
+++ b/src/Katip/Core.hs
@@ -98,8 +98,9 @@
 import           System.Posix
 #endif
 
+import           GHC.Conc.Sync                     (labelThread)
 #if MIN_VERSION_base(4, 19, 0)
-import           GHC.Conc.Sync                     (fromThreadId, labelThread)
+import           GHC.Conc.Sync                     (fromThreadId)
 #else
 import           Data.Maybe                        (fromMaybe)
 #endif
