diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a3f70d5..e94d7c7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * +## [0.9.11] - 2023-06-20 + +### Fixed + +* Build of a new release + ## [0.9.10] - 2023-06-20 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index c9ba4aa1..3e6017b3 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.10" +version = "0.9.11" 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 8a978443..aaff7709 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.9.10" +version = "0.9.11" 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 38b0d9fe..ba733b56 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.10" +display_version = "0.9.11" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/libretro/src/lib.rs b/frontends/libretro/src/lib.rs index 09403524..fb17bdd5 100644 --- a/frontends/libretro/src/lib.rs +++ b/frontends/libretro/src/lib.rs @@ -173,7 +173,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.10\0".as_ptr() as *const c_char; + (*info).library_version = "v0.9.11\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 4f1d2662..e4914137 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.9.10" +version = "0.9.11" 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 31d5d2fc..e6ee91f2 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.9.10", + "version": "0.9.11", "description": "The web version of Boytacean", "repository": { "type": "git",