diff --git a/CHANGELOG.md b/CHANGELOG.md
index e000a1b2157f19893c71513f0bbb6e06c9257276..8ae2f38be818ccfbe3f6664afa46c6d55d149f42 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 *
 
+## [0.9.18] - 2024-01-02
+
+### Added
+
+* Support for Python 3 API - [#36](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/36)
+* `next_frame()` method for frame by frame navigation
+* Support for palette switching option in Libretro - [#37](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/37)
+
+### Changed
+
+* Made part of the frontend code conditional on `NODE_ENV = "development"`
+* Re-release of version `0.9.17`
+
 ## [0.9.17] - 2024-01-02
 
 ### Added
diff --git a/Cargo.toml b/Cargo.toml
index 16b853b72ba2279bfbdb49a6ac4f9ef7007ed830..b77a69598ce8076be6a04cc2203f133e2a629af2 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.17"
+version = "0.9.18"
 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 ffb9be5d7d86b077ade5d11b52c50cccbc95a78e..9c2d7b9e3cee1584b7eaa5db0d134a00ebc28337 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.9.17"
+version = "0.9.18"
 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 5b660c9d7c57a2851f060939fb1a689b7b088a1d..ea2f5f685ff6dc1824e7dcfb11cc41ae1baf012a 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.17"
+display_version = "0.9.18"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 19dae700b5d2307125cdc8c6254b0133f699c829..a55cb23675850b7d0f21099bbe465fccf614be9e 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.9.17"
+version = "0.9.18"
 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 be28d19fcf7fae2f14b20c40b3c530bd687b5ad2..33972489f3c1d26fc32fa45d01aae07c92170f41 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.9.17",
+    "version": "0.9.18",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
diff --git a/setup.py b/setup.py
index 3e7bad9d531f4ace2fe2e650ee42a2ff6355b6de..51b98c155e20cfa25c9120d3f5219e2f4b8db58d 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.9.17",
+    version="0.9.18",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",