diff --git a/CHANGELOG.md b/CHANGELOG.md
index 983951c6442c2fe6d15152a67e1bfdb6ed5a8bcb..ecdbd854b3954269a283c121bcc2c7bd2bd214d1 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
 
-* Support for Zip file in Web frontend
-* Support for raw frame buffer
-* Lazy evaluation of frame_buffer (on-demand) for DMG
+*
 
 ### Changed
 
@@ -21,6 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 *
 
+## [0.9.15] - 2023-10-30
+
+### Added
+
+* Support for ROM in zip files (Web frontend)
+* Support for raw frame buffer
+* Lazy evaluation of frame_buffer (on-demand) for DMG
+
 ## [0.9.14] - 2023-08-24
 
 ### Added
diff --git a/Cargo.toml b/Cargo.toml
index 3dbc7a9f3dd3daae9a4c77aaa63f67d71bc9dd10..81aa477506eb511faad5466a1aa798d150f025e3 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.9.14"
+version = "0.9.15"
 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 eef981408778a3f4211382c9de2df2e8fb44f0ed..38f7bbf6531c82d0fcc4d6afbb2a24b69d5b9a72 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.9.14"
+version = "0.9.15"
 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 386c097d38fbedd4c2474a4d706f4f82dfcb7782..0a5981ff93c5ae7e8f507eac9f3543af25434e71 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.9.14"
+display_version = "0.9.15"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 94dc586e44f6997e0ae712119d210cd6aee23f25..fb33cf3b9922d5327ad97a50d0fa30888a5f09da 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.9.14"
+version = "0.9.15"
 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 eb9e9644fae4015b4f66722c51f57651b7a5a658..6007501d38cdd4ac8e83340d39696fa43ead7189 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.9.14",
+    "version": "0.9.15",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",