From 797b24226aa0d7bb7e2fbfa9e1052f95b27d18d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Mon, 21 Oct 2024 22:06:50 +0100 Subject: [PATCH] version: 0.10.14 --- CHANGELOG.md | 12 +++++++++--- Cargo.toml | 10 +++++----- crates/common/Cargo.toml | 2 +- crates/encoding/Cargo.toml | 6 +++--- crates/hashing/Cargo.toml | 4 ++-- frontends/libretro/Cargo.toml | 4 ++-- frontends/libretro/res/boytacean_libretro.info | 2 +- frontends/sdl/Cargo.toml | 6 +++--- frontends/web/package.json | 2 +- setup.py | 2 +- 10 files changed, 28 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a79ae05b..664dfeed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -* Greatly improved state management in BOS -* Support for MBC2 +* ### Changed @@ -20,7 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * -## [0.10.13] - 2024-09-02 +## [0.10.14] - 2024-10-21 + +### Added + +* Greatly improved state management in BOS +* Support for MBC2 + +## [0.10.14] - 2024-09-02 ### Changed diff --git a/Cargo.toml b/Cargo.toml index c3d1a385..7063c05c 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.13" +version = "0.10.14" authors = ["João Magalhães "] license = "Apache-2.0" repository = "https://github.com/joamag/boytacean" @@ -25,9 +25,9 @@ cpulog = [] gen-mock = [] [dependencies] -boytacean-common = { path = "crates/common", version = "0.10.13" } -boytacean-encoding = { path = "crates/encoding", version = "0.10.13" } -boytacean-hashing = { path = "crates/hashing", version = "0.10.13" } +boytacean-common = { path = "crates/common", version = "0.10.14" } +boytacean-encoding = { path = "crates/encoding", version = "0.10.14" } +boytacean-hashing = { path = "crates/hashing", version = "0.10.14" } wasm-bindgen = { version = "0.2", optional = true } js-sys = { version = "0.3", optional = true } pyo3 = { version = "0.20", optional = true } @@ -67,7 +67,7 @@ members = [ "crates/encoding", "crates/hashing" ] -package = { version = "0.10.13", authors = ["João Magalhães "], edition = "2021" } +package = { version = "0.10.14", authors = ["João Magalhães "], edition = "2021" } [package.metadata.docs.rs] features = ["wasm", "gen-mock"] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 231f1def..5ee49ace 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "boytacean-common" description = "Commons library for Boytacen." -version = "0.10.13" +version = "0.10.14" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2021" diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml index 3446af56..a184aa70 100644 --- a/crates/encoding/Cargo.toml +++ b/crates/encoding/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "boytacean-encoding" description = "Codecs library for Boytacen." -version = "0.10.13" +version = "0.10.14" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2021" @@ -10,8 +10,8 @@ edition = "2021" simd = ["boytacean-hashing/simd"] [dependencies] -boytacean-common = { path = "../common", version = "0.10.13" } -boytacean-hashing = { path = "../hashing", version = "0.10.13" } +boytacean-common = { path = "../common", version = "0.10.14" } +boytacean-hashing = { path = "../hashing", version = "0.10.14" } [[bin]] name = "zippy" diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml index 7be69f26..420c6b88 100644 --- a/crates/hashing/Cargo.toml +++ b/crates/hashing/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "boytacean-hashing" description = "Hashing library for Boytacen." -version = "0.10.13" +version = "0.10.14" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2021" @@ -10,4 +10,4 @@ edition = "2021" simd = [] [dependencies] -boytacean-common = { path = "../common", version = "0.10.13" } +boytacean-common = { path = "../common", version = "0.10.14" } diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml index e98b5df2..1766181e 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.10.13" +version = "0.10.14" authors = ["João Magalhães "] description = "A Libretro frontend for Boytacen" license = "Apache-2.0" @@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"] cpulog = ["boytacean/cpulog"] [dependencies] -boytacean = { path = "../..", version = "0.10.13" } +boytacean = { path = "../..", version = "0.10.14" } diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info index efa20671..4ad52e0a 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.13" +display_version = "0.10.14" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml index f116b7b8..7efb2127 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.10.13" +version = "0.10.14" authors = ["João Magalhães "] description = "An SDL frontend for Boytacen" license = "Apache-2.0" @@ -15,8 +15,8 @@ pedantic = ["boytacean/pedantic"] cpulog = ["boytacean/cpulog"] [dependencies] -boytacean = { path = "../..", version = "0.10.13" } -boytacean-common = { path = "../../crates/common", version = "0.10.13" } +boytacean = { path = "../..", version = "0.10.14" } +boytacean-common = { path = "../../crates/common", version = "0.10.14" } clap = { version = "4", features = ["derive"] } image = "0.24" chrono = "0.4" diff --git a/frontends/web/package.json b/frontends/web/package.json index f7d4ae4a..70220a99 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.10.13", + "version": "0.10.14", "description": "The web version of Boytacean", "repository": { "type": "git", diff --git a/setup.py b/setup.py index 137f4846..c317db96 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setuptools.setup( name="boytacean", - version="0.10.13", + version="0.10.14", author="João Magalhães", author_email="joamag@gmail.com", description="A Game Boy emulator that is written in Rust",