From 475998b4f85aaa9f442208e79404e8deb617aa9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Tue, 16 Jul 2024 15:04:27 +0100 Subject: [PATCH] version: 0.10.2 --- CHANGELOG.md | 12 +++++++++--- 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, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d30c16e..4b63b192 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 SIMD based color space conversion - [#45](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/45) -* Support for `window.requestAnimationFrame()` and game loop inversion of control - [#26](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/26) -* Custom Boot ROM support for CGB - [#34](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/34) +* ### Changed @@ -21,6 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * +## [0.10.3] - 2024-07-16 + +### Added + +* Support for SIMD based color space conversion - [#45](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/45) +* Support for `window.requestAnimationFrame()` and game loop inversion of control - [#26](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/26) +* Custom Boot ROM support for CGB - [#34](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/34) + ## [0.10.2] - 2024-06-07 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index e58a8dd0..e33085a5 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.2" +version = "0.10.3" 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 27ecb25d..2af1edc5 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.10.2" +version = "0.10.3" 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 1b81e445..18f36d0b 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.2" +display_version = "0.10.3" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml index 319a7e54..1813badd 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.10.2" +version = "0.10.3" 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 ef365b9a..5d6de7df 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.10.2", + "version": "0.10.3", "description": "The web version of Boytacean", "repository": { "type": "git", diff --git a/setup.py b/setup.py index 88ab4345..62533aea 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setuptools.setup( name="boytacean", - version="0.10.2", + version="0.10.3", author="João Magalhães", author_email="joamag@gmail.com", description="A Game Boy emulator that is written in Rust",