diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9c04992ff46b6fd155c6b8adaa2b45090135bdb8..f93a8e6d7f110d1240858a0b4a4a478013620619 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 *
 
+## [0.10.13] - 2024-09-02
+
+### Changed
+
+* Bumped EmuKit to improve Web runtime performance
+
 ## [0.10.12] - 2024-08-30
 
 ### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index 1641e40545b0e5d9a3f9cfa39ea814f241cf2f1b..a9e90ee288b8a94f6c2d25b24bcb46874f848362 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.12"
+version = "0.10.13"
 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.12" }
-boytacean-encoding = { path = "crates/encoding", version = "0.10.12" }
-boytacean-hashing = { path = "crates/hashing", version = "0.10.12" }
+boytacean-common = { path = "crates/common", version = "0.10.13" }
+boytacean-encoding = { path = "crates/encoding", version = "0.10.13" }
+boytacean-hashing = { path = "crates/hashing", version = "0.10.13" }
 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.12", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
+package = { version = "0.10.13", 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 36ec499162ac0daa3206c30f963c1f067e5c4e22..231f1defcd5850e0fcf80f259509f730d270116f 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.12"
+version = "0.10.13"
 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 dd96cba6500841548014e1af2dc2ea613c8d994d..3446af563b8a3f3a725a8e3c420a7921dac095cb 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.12"
+version = "0.10.13"
 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.12" }
-boytacean-hashing = { path = "../hashing", version = "0.10.12" }
+boytacean-common = { path = "../common", version = "0.10.13" }
+boytacean-hashing = { path = "../hashing", version = "0.10.13" }
 
 [[bin]]
 name = "zippy"
diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml
index b139a35405b7e3834bff3e60883f1e2cf8276ec1..7be69f26ff337dcb28507d0d92b8c795de39be35 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.12"
+version = "0.10.13"
 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.12" }
+boytacean-common = { path = "../common", version = "0.10.13" }
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index e5b66162d39b5c6a44c23c78898aa29482331546..e98b5df27c52c76e7f54b497c5246790191c9dc3 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.10.12"
+version = "0.10.13"
 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.12" }
+boytacean = { path = "../..", version = "0.10.13" }
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index 56bd0dcfe0be77cc8a63bf94b05f0f9fbb1335a7..efa20671849725bd5238f1a2ab14f09964b26f92 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.12"
+display_version = "0.10.13"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 68e6f6d6fe8d5519f39b12c0524c3193acbaf349..f116b7b8099a705f66809649deab882cff6b0e15 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.10.12"
+version = "0.10.13"
 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.12" }
-boytacean-common = { path = "../../crates/common", version = "0.10.12" }
+boytacean = { path = "../..", version = "0.10.13" }
+boytacean-common = { path = "../../crates/common", version = "0.10.13" }
 clap = { version = "4", features = ["derive"] }
 image = "0.24"
 chrono = "0.4"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index d7fc484a750752e8d82c353872d171983a68826b..f7d4ae4a25ccb2725822d599af6646f45da52306 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.10.12",
+    "version": "0.10.13",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
@@ -24,7 +24,7 @@
         "@typescript-eslint/eslint-plugin": "^7.18.0",
         "@typescript-eslint/parser": "^7.18.0",
         "buffer": "^6.0.3",
-        "emukit": "^0.10.12",
+        "emukit": "^0.10.13",
         "eslint": "^8.57.0",
         "eslint-plugin-import": "^2.29.1",
         "eslint-plugin-react-hooks": "^4.6.2",
diff --git a/setup.py b/setup.py
index 746c6aecae832912d93d30bafe08435d1fbf8f12..137f48464c94dbcf11d5e9bba057a33e9c31bcc5 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.10.12",
+    version="0.10.13",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",