diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9cdde491da6591129721418a6a0f0077039aab78..5df59cd709113cb1bf319e5ca4a07c6e87ddae32 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.1] - 2024-06-07
+
+### Fixed
+
 * Bumped base rust version to fix issue with GitHub Action Deploy workflow
 
 ## [0.10.0] - 2024-06-07
diff --git a/Cargo.toml b/Cargo.toml
index 9375901073e161c2069755f663abd813e2992a61..fcd4efe22a6e96d451b9973c190049163bf707af 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.0"
+version = "0.10.1"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 repository = "https://github.com/joamag/boytacean"
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index 1687941d62cedc31dbca185dec42f33ccec63033..895faa8128a9478a90ec079daf88da6d5b1dc1c2 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.10.0"
+version = "0.10.1"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "A Lib Retro frontend for Boytacen"
 license = "Apache-2.0"
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index c176ef4f1d2dee5eb27fa789bca1997eb1b7c2e8..d6d9214f732e822574f64c09ebe3ea8ac0a91ee9 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.0"
+display_version = "0.10.1"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index e8ed5fb79be250b3e5e7b2b2b098f74a079d7938..48c19e28b240dad28a2d8dac298c586ef4604072 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.10.0"
+version = "0.10.1"
 authors = ["João Magalhães <joamag@gmail.com>"]
 description = "An SDL frontend for Boytacen"
 license = "Apache-2.0"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index 106e83593db5069b1015eee45334aa9735b89480..ba69bbab8401a46cd754d27bcfd63a180683672a 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.10.0",
+    "version": "0.10.1",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
diff --git a/setup.py b/setup.py
index 9b4960889aa2d87b3a2382fd702f956161e8a8f2..2a8e98fb6a925f6d1bcb33867c296d01d0057930 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.10.0",
+    version="0.10.1",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",