diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f56da0c..e000a1b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,18 +9,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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"` +* ### Fixed * +## [0.9.17] - 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"` + ## [0.9.16] - 2023-10-30 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 69e2ec19..16b853b7 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.16" +version = "0.9.17" authors = ["João Magalhães "] license = "Apache-2.0" repository = "https://github.com/joamag/boytacean" diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml index b469b693..ffb9be5d 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.9.16" +version = "0.9.17" authors = ["João Magalhães "] 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 a9694d37..5b660c9d 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.16" +display_version = "0.9.17" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml index f0adab94..d6bc9e8b 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.9.16" +version = "0.9.17" authors = ["João Magalhães "] description = "An SDL frontend for Boytacen" license = "Apache-2.0" diff --git a/frontends/web/package.json b/frontends/web/package.json index 7449e901..be28d19f 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.9.16", + "version": "0.9.17", "description": "The web version of Boytacean", "repository": { "type": "git", diff --git a/setup.py b/setup.py index 6b179b94..3e7bad9d 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setuptools.setup( name="boytacean", - version="0.9.16", + version="0.9.17", author="João Magalhães", author_email="joamag@gmail.com", description="A Game Boy emulator that is written in Rust",