diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for byteslice
 
+## 0.2.11.1 -- 2023-07-26
+
+* Fix regression causing build failure in GHC 9.2.
+
 ## 0.2.11.0 -- 2023-07-25
 
 * Add `Data.Bytes.Encode.LittleEndian`.
diff --git a/byteslice.cabal b/byteslice.cabal
--- a/byteslice.cabal
+++ b/byteslice.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.4
 name: byteslice
-version: 0.2.11.0
+version: 0.2.11.1
 synopsis: Slicing managed and unmanaged memory
 description:
   This library provides types that allow the user to talk about a slice of
diff --git a/src/Data/Bytes.hs b/src/Data/Bytes.hs
--- a/src/Data/Bytes.hs
+++ b/src/Data/Bytes.hs
@@ -1,5 +1,6 @@
 {-# language BangPatterns #-}
 {-# language BlockArguments #-}
+{-# language DataKinds #-}
 {-# language DuplicateRecordFields #-}
 {-# language KindSignatures #-}
 {-# language MagicHash #-}
