Skip to content

Commit

Permalink
version: 0.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 1, 2023
1 parent ee3959f commit efeeb86
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

*

## [0.9.10] - 2023-06-20

### Fixed

* Issue with release life-cycle

## [0.9.9] - 2023-06-20

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "boytacean"
description = "A Game Boy emulator that is written in Rust."
version = "0.9.9"
version = "0.9.10"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/joamag/boytacean"
Expand Down
2 changes: 1 addition & 1 deletion frontends/libretro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boytacean-libretro"
version = "0.9.9"
version = "0.9.10"
authors = ["João Magalhães <[email protected]>"]
description = "A Lib Retro frontend for Boytacen"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion frontends/libretro/res/boytacean_libretro.info
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ corename = "Boytacean"
categories = "Emulator"
license = "Apache-2."
permissions = ""
display_version = "0.9.9"
display_version = "0.9.10"

# Hardware Information
manufacturer = "Nintendo"
Expand Down
2 changes: 1 addition & 1 deletion frontends/libretro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.9\0".as_ptr() as *const c_char;
(*info).library_version = "v0.9.10\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;
Expand Down
2 changes: 1 addition & 1 deletion frontends/sdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boytacean-sdl"
version = "0.9.9"
version = "0.9.10"
authors = ["João Magalhães <[email protected]>"]
description = "An SDL frontend for Boytacen"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion frontends/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boytacean-web",
"version": "0.9.9",
"version": "0.9.10",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
Expand Down

0 comments on commit efeeb86

Please sign in to comment.