Skip to content
Snippets Groups Projects
Verified Commit 3a4b3403 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

version: 0.9.7

parent 12321891
No related branches found
No related tags found
No related merge requests found
Pipeline #3125 passed
......@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* Support for [Libretro](https://www.libretro.com/) core
*
### Changed
......@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
*
## [0.9.7] - 2023-06-20
### Added
* Support for [Libretro](https://www.libretro.com/) core - [#14](https://gitlab.stage.hive.pt/joamag/boytacean/-/issues/14)
## [0.9.6] - 2023-06-20
### Added
......
[package]
name = "boytacean"
description = "A Game Boy emulator that is written in Rust."
version = "0.9.6"
version = "0.9.7"
authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/joamag/boytacean"
......
[package]
name = "boytacean-libretro"
version = "0.9.6"
version = "0.9.7"
authors = ["João Magalhães <joamag@gmail.com>"]
description = "A Lib Retro frontend for Boytacen"
license = "Apache-2.0"
......
......@@ -6,7 +6,7 @@ corename = "Boytacean"
categories = "Emulator"
license = "Apache-2."
permissions = ""
display_version = "0.9.6"
display_version = "0.9.7"
# Hardware Information
manufacturer = "Nintendo"
......
......@@ -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.6\0".as_ptr() as *const c_char;
(*info).library_version = "v0.9.7\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;
......
[package]
name = "boytacean-sdl"
version = "0.9.6"
version = "0.9.7"
authors = ["João Magalhães <joamag@gmail.com>"]
description = "An SDL frontend for Boytacen"
license = "Apache-2.0"
......
{
"name": "boytacean-web",
"version": "0.9.6",
"version": "0.9.7",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment