diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4a07db0808fcf36b02f1307d4a5b67c3d5c39fc8..ea4132db1dfcb07f247e16abe1b2039a5ee9ce7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Fixed
 
+*
+
+## [0.10.9] - 2024-08-30
+
+### Fixed
+
 * Unit test issue
 
 ## [0.10.8] - 2024-08-30
diff --git a/Cargo.toml b/Cargo.toml
index 5ab53643c1b3d6af3cc21660cf497a2753b49a09..81ec0549b6841388d96c419980c6cefdfd5135c9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean"
 description = "A Game Boy emulator that is written in Rust."
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 repository = "https://github.com/joamag/boytacean"
@@ -25,9 +25,9 @@ cpulog = []
 gen-mock = []
 
 [dependencies]
-boytacean-common = { path = "crates/common", version = "0.10.8" }
-boytacean-encoding = { path = "crates/encoding", version = "0.10.8" }
-boytacean-hashing = { path = "crates/hashing", version = "0.10.8" }
+boytacean-common = { path = "crates/common", version = "0.10.9" }
+boytacean-encoding = { path = "crates/encoding", version = "0.10.9" }
+boytacean-hashing = { path = "crates/hashing", version = "0.10.9" }
 wasm-bindgen = { version = "0.2", optional = true }
 js-sys = { version = "0.3", optional = true }
 pyo3 = { version = "0.20", optional = true }
@@ -67,7 +67,7 @@ members = [
     "crates/encoding",
     "crates/hashing"
 ]
-package = { version = "0.10.8", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
+package = { version = "0.10.9", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
 
 [package.metadata.docs.rs]
 features = ["wasm", "gen-mock"]
diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml
index d3f3116ec35930931bcc2d348f86784097dcc3e0..6d103d2ab696e9719e915e4bb16c52061f506a30 100644
--- a/crates/common/Cargo.toml
+++ b/crates/common/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-common"
 description = "Commons library for Boytacen."
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 edition = "2021"
diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml
index 389972fb7e4b56d99fe08cd06706270c16e1f9c3..69244c8de1736f3fb449a8a159c568aaa9aa0e58 100644
--- a/crates/encoding/Cargo.toml
+++ b/crates/encoding/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-encoding"
 description = "Codecs library for Boytacen."
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 edition = "2021"
@@ -10,8 +10,8 @@ edition = "2021"
 simd = ["boytacean-hashing/simd"]
 
 [dependencies]
-boytacean-common = { path = "../common", version = "0.10.8" }
-boytacean-hashing = { path = "../hashing", version = "0.10.8" }
+boytacean-common = { path = "../common", version = "0.10.9" }
+boytacean-hashing = { path = "../hashing", version = "0.10.9" }
 
 [[bin]]
 name = "zippy"
diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml
index 60aadac475f3bd896a9b08311ee23ffb4fc9c237..5587ac2772a7c8d9616aead4f2312d2d431e2a61 100644
--- a/crates/hashing/Cargo.toml
+++ b/crates/hashing/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-hashing"
 description = "Hashing library for Boytacen."
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 edition = "2021"
@@ -10,4 +10,4 @@ edition = "2021"
 simd = []
 
 [dependencies]
-boytacean-common = { path = "../common", version = "0.10.8" }
+boytacean-common = { path = "../common", version = "0.10.9" }
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index fca21187295b15ef7c6439ae675c650a328d4d84..bc3c086782dd49fb42fa3bb804153f2e8953cdb5 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "A Libretro frontend for Boytacen"
 license = "Apache-2.0"
@@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"]
 cpulog = ["boytacean/cpulog"]
 
 [dependencies]
-boytacean = { path = "../..", version = "0.10.8" }
+boytacean = { path = "../..", version = "0.10.9" }
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index af8635e2921ea963aa589de4405be46e1f2ef8f7..c5b6139a45c97bc11826eba6b30f3938e8840fb7 100644
--- a/frontends/libretro/res/boytacean_libretro.info
+++ b/frontends/libretro/res/boytacean_libretro.info
@@ -6,7 +6,7 @@ corename = "Boytacean"
 categories = "Emulator"
 license = "Apache-2."
 permissions = ""
-display_version = "0.10.8"
+display_version = "0.10.9"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 14f63e0fb857a7b507221debb686ce88bc962764..7729dffff7daa836e61810ca6c5a84996c31ed33 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.10.8"
+version = "0.10.9"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "An SDL frontend for Boytacen"
 license = "Apache-2.0"
@@ -15,8 +15,8 @@ pedantic = ["boytacean/pedantic"]
 cpulog = ["boytacean/cpulog"]
 
 [dependencies]
-boytacean = { path = "../..", version = "0.10.8" }
-boytacean-common = { path = "../../crates/common", version = "0.10.8" }
+boytacean = { path = "../..", version = "0.10.9" }
+boytacean-common = { path = "../../crates/common", version = "0.10.9" }
 clap = { version = "4", features = ["derive"] }
 image = "0.24"
 chrono = "0.4"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index 43ac4654e2352cf56706fa9f743b095250dcc889..299a61b4c7675a49bf5291ab0d2f7d7ed752f171 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.10.8",
+    "version": "0.10.9",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
diff --git a/setup.py b/setup.py
index 2fe78a3d03ea1dda4d945a53624d563f54b93dff..328269a3288e201d0a6180375977b3fdc9d74b62 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.10.8",
+    version="0.10.9",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",
diff --git a/src/state.rs b/src/state.rs
index d8ecc222fc7a199da851da731badfb4039dcd40b..57f63e45b37db28521fa54eb2a8d9010b84e38a4 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -2060,7 +2060,7 @@ mod tests {
         let encoded = encode_zippy(&data, None, None).unwrap();
         let decoded = decode_zippy(&encoded, None).unwrap();
         assert_eq!(data, decoded);
-        assert_eq!(encoded.len(), 846);
+        assert_eq!(encoded.len(), 850);
         assert_eq!(decoded.len(), 25154);
     }
 }