From 6c5bacf4ed8e8ed7a7620c790f445365e3d324f5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com>
Date: Tue, 2 Jan 2024 22:50:43 +0000
Subject: [PATCH] version: 0.9.18

---
 CHANGELOG.md                                   | 13 +++++++++++++
 Cargo.toml                                     |  2 +-
 frontends/libretro/Cargo.toml                  |  2 +-
 frontends/libretro/res/boytacean_libretro.info |  2 +-
 frontends/sdl/Cargo.toml                       |  2 +-
 frontends/web/package.json                     |  2 +-
 setup.py                                       |  2 +-
 7 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e000a1b2..8ae2f38b 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 16b853b7..b77a6959 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 ffb9be5d..9c2d7b9e 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 5b660c9d..ea2f5f68 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 19dae700..a55cb236 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 be28d19f..33972489 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 3e7bad9d..51b98c15 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",
-- 
GitLab