diff --git a/CHANGELOG.md b/CHANGELOG.md
index c426755c8d5cb693760c965becd8e24ca7013033..2a7cdbb664768b40065e9e5489428118a155ad32 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Added
 
-* `Licensee` enumeration with the description of the publisher of the ROM
-* Support for Zippy encoding format for fast compression
-* New hashing crate that includes CRC-32 and CRC-32C implementations
+*
 
 ### Changed
 
@@ -19,6 +17,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Fixed
 
+*
+
+## [0.10.5] - 2024-08-08
+
+### Added
+
+* `Licensee` enumeration with the description of the publisher of the ROM
+* Support for Zippy encoding format for fast compression
+* New hashing crate that includes CRC-32 and CRC-32C implementations
+
+### Fixed
+
 * Issue with the web frontend and `hardReset()` implementation
 
 ## [0.10.4] - 2024-07-16
diff --git a/Cargo.toml b/Cargo.toml
index 55b87218188519a377d50a62cfa698651e65dbb2..2e8b6ebd2bc1d19b8076a1326c0bd123f7d50ac7 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.4"
+version = "0.10.5"
 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.4" }
-boytacean-encoding = { path = "crates/encoding", version = "0.10.4" }
-boytacean-hashing = { path = "crates/hashing", version = "0.10.4" }
+boytacean-common = { path = "crates/common", version = "0.10.5" }
+boytacean-encoding = { path = "crates/encoding", version = "0.10.5" }
+boytacean-hashing = { path = "crates/hashing", version = "0.10.5" }
 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.4", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2018" }
+package = { version = "0.10.5", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2018" }
 
 [package.metadata.docs.rs]
 features = ["wasm", "gen-mock"]
diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml
index 788a656505e28895e8117536808b9b8965d39f2b..b99fd342fda0075933078e0f4a76133a667b09a8 100644
--- a/crates/common/Cargo.toml
+++ b/crates/common/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-common"
-version = "0.10.4"
+version = "0.10.5"
 edition = "2018"
 
 [dependencies]
diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml
index 24822094cd7083ae2b5bbcd14bb601d77b6e2626..00542bfd9046d127ebe68fabf5c9265829c0a66f 100644
--- a/crates/encoding/Cargo.toml
+++ b/crates/encoding/Cargo.toml
@@ -1,11 +1,11 @@
 [package]
 name = "boytacean-encoding"
-version = "0.10.4"
+version = "0.10.5"
 edition = "2018"
 
 [features]
 simd = ["boytacean-hashing/simd"]
 
 [dependencies]
-boytacean-common = { path = "../common", version = "0.10.4" }
-boytacean-hashing = { path = "../hashing", version = "0.10.4" }
+boytacean-common = { path = "../common", version = "0.10.5" }
+boytacean-hashing = { path = "../hashing", version = "0.10.5" }
diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml
index 31205fee9afd14d6c32c5a210c6aebd1f823a1d7..8a25739781676264b7c926d8a8ffd2ba8b48a7c8 100644
--- a/crates/hashing/Cargo.toml
+++ b/crates/hashing/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-hashing"
-version = "0.10.4"
+version = "0.10.5"
 edition = "2018"
 
 [features]
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index 872ea0d0ab23d71de167be53de96fa0d462171e1..90f72b71899b26de1b294a6373cce7a2837dd9a3 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.10.4"
+version = "0.10.5"
 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.4" }
+boytacean = { path = "../..", version = "0.10.5" }
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index ee769e0a8aafea560d3824284d5ea96b6f28aed2..cea987a18b0850d983ebae24e10f8c43758de6f9 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.4"
+display_version = "0.10.5"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index a97d80c8c38da5af1cff007a50da66ee23ff63b4..a9e0f2d6b4a6fa7e29060fd8ce595076deec62a2 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.10.4"
+version = "0.10.5"
 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.4" }
-boytacean-common = { path = "../../crates/common", version = "0.10.4" }
+boytacean = { path = "../..", version = "0.10.5" }
+boytacean-common = { path = "../../crates/common", version = "0.10.5" }
 clap = { version = "4", features = ["derive"] }
 image = "0.24"
 chrono = "0.4"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index 97c5f884166d5880da44a470858bc4a0150999fb..746fef32c606fa4ff2c23cd989e6f0b5f7dd1265 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.10.4",
+    "version": "0.10.5",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
diff --git a/setup.py b/setup.py
index 42271b984d5584b70fd8fa18629eafba210ff58e..26f02f4c96a2058d76b67e8d4a6d0a8ba148b819 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.10.4",
+    version="0.10.5",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",