From 6f6cbb174f2129b434b91aff898e201a3a4fa2a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Wed, 2 Aug 2023 00:27:01 +0100 Subject: [PATCH] version: 0.9.13 --- CHANGELOG.md | 23 ++++++++++++++----- Cargo.toml | 2 +- frontends/libretro/Cargo.toml | 2 +- .../libretro/res/boytacean_libretro.info | 2 +- frontends/libretro/src/lib.rs | 2 +- frontends/sdl/Cargo.toml | 2 +- frontends/web/package.json | 2 +- 7 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7a5aed..4b0a3186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,37 +19,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * -## [0.9.12] - 2023-06-20 +## [0.9.13] - 2023-08-01 + +### Changed + +* Improved command line parsing with positional ROM path value +* Better CI/CD for releases + +### Fixed + +* Small issue with command line arguments + +## [0.9.12] - 2023-08-01 ### Added * New WASM build -## [0.9.11] - 2023-06-20 +## [0.9.11] - 2023-08-01 ### Fixed * Build of a new release -## [0.9.10] - 2023-06-20 +## [0.9.10] - 2023-08-01 ### Fixed * Issue with release life-cycle -## [0.9.9] - 2023-06-20 +## [0.9.9] - 2023-08-01 ### Fixed * Issue with release life-cycle -## [0.9.8] - 2023-06-20 +## [0.9.8] - 2023-08-01 ### Added * Better release life-cycle -## [0.9.7] - 2023-06-20 +## [0.9.7] - 2023-08-01 ### Added diff --git a/Cargo.toml b/Cargo.toml index c0bfcc62..c1119a15 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.12" +version = "0.9.13" 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 165fa81e..9b993f4a 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.9.12" +version = "0.9.13" 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 5d9f2c32..2966bc69 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.12" +display_version = "0.9.13" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/libretro/src/lib.rs b/frontends/libretro/src/lib.rs index 9b1cbbe7..408b95e4 100644 --- a/frontends/libretro/src/lib.rs +++ b/frontends/libretro/src/lib.rs @@ -174,7 +174,7 @@ pub extern "C" fn retro_reset() { pub unsafe extern "C" fn retro_get_system_info(info: *mut RetroSystemInfo) { debugln!("retro_get_system_info()"); (*info).library_name = "Boytacean\0".as_ptr() as *const c_char; - (*info).library_version = "v0.9.12\0".as_ptr() as *const c_char; + (*info).library_version = "v0.9.13\0".as_ptr() as *const c_char; (*info).valid_extensions = "gb|gbc\0".as_ptr() as *const c_char; (*info).need_fullpath = false; (*info).block_extract = false; diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml index 04a7dab9..2ffea6e3 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.9.12" +version = "0.9.13" 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 9110434e..8fe26e28 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.9.12", + "version": "0.9.13", "description": "The web version of Boytacean", "repository": { "type": "git", -- GitLab