diff --git a/Changes b/Changes
--- a/Changes
+++ b/Changes
@@ -1,4 +1,8 @@
-[Changes for 0.54 - 2022-06-16]
+[Changes for 0.55 - 2025-06-19]
+
+* Fix compilation on GHC 9.8 (@ocharles).
+
+[Changes for 0.54 - 2025-06-16]
 
 * Fix compilation for GCC 14 (@ocharles).
 
diff --git a/HsSyck.cabal b/HsSyck.cabal
--- a/HsSyck.cabal
+++ b/HsSyck.cabal
@@ -1,5 +1,5 @@
 Name:                HsSyck
-Version:             0.54
+Version:             0.55
 Cabal-version:       >= 1.10
 Category:            Text, Pugs
 Synopsis:            Fast, lightweight YAML loader and dumper
@@ -30,14 +30,14 @@
 Library
     Default-language:    Haskell2010
     Build-Depends: base>=4 && <6,
-                   bytestring>=0.9.0.1 && <0.12,
+                   bytestring>=0.9.0.1 && <0.13,
                    syb<0.8,
                    utf8-string>=0.3 && <1.1,
                    hashtables<1.5
 
     exposed-modules: Data.Yaml.Syck
 
-    ghc-options: -funbox-strict-fields -optc-Wno-int-conversion -optc-Wno-deprecated-non-prototype -optc-Wno-format
+    ghc-options: -funbox-strict-fields -optc-Wno-int-conversion -optc-Wno-deprecated-non-prototype -optc-Wno-format -optc-Wno-format-security
 
 
     c-sources: syck/bytecode.c syck/emitter.c syck/gram.c syck/handler.c
