diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6f3d39..77af1acd 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 * Unit test that was failing +## [0.10.7] - 2024-08-08 + +### Fixed + +* Unit test that was failing + ## [0.10.6] - 2024-08-08 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 71fbcbb1..28d406ff 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.6" +version = "0.10.7" 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.6" } -boytacean-encoding = { path = "crates/encoding", version = "0.10.6" } -boytacean-hashing = { path = "crates/hashing", version = "0.10.6" } +boytacean-common = { path = "crates/common", version = "0.10.7" } +boytacean-encoding = { path = "crates/encoding", version = "0.10.7" } +boytacean-hashing = { path = "crates/hashing", version = "0.10.7" } 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.6", authors = ["João Magalhães "], edition = "2018" } +package = { version = "0.10.7", authors = ["João Magalhães "], edition = "2018" } [package.metadata.docs.rs] features = ["wasm", "gen-mock"] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index b9087f7c..c53e002d 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.6" +version = "0.10.7" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2018" diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml index 2af883a7..23bb711b 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.6" +version = "0.10.7" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2018" @@ -10,5 +10,5 @@ edition = "2018" simd = ["boytacean-hashing/simd"] [dependencies] -boytacean-common = { path = "../common", version = "0.10.6" } -boytacean-hashing = { path = "../hashing", version = "0.10.6" } +boytacean-common = { path = "../common", version = "0.10.7" } +boytacean-hashing = { path = "../hashing", version = "0.10.7" } diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml index f58ebddb..ca4b5dd2 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.6" +version = "0.10.7" authors = ["João Magalhães "] license = "Apache-2.0" edition = "2018" diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml index db79fb5b..a26c9858 100644 --- a/frontends/libretro/Cargo.toml +++ b/frontends/libretro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-libretro" -version = "0.10.6" +version = "0.10.7" 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.6" } +boytacean = { path = "../..", version = "0.10.7" } diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info index 17ade95c..bc0eb95e 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.6" +display_version = "0.10.7" # Hardware Information manufacturer = "Nintendo" diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml index fd97fd75..17bed6bd 100644 --- a/frontends/sdl/Cargo.toml +++ b/frontends/sdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boytacean-sdl" -version = "0.10.6" +version = "0.10.7" 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.6" } -boytacean-common = { path = "../../crates/common", version = "0.10.6" } +boytacean = { path = "../..", version = "0.10.7" } +boytacean-common = { path = "../../crates/common", version = "0.10.7" } clap = { version = "4", features = ["derive"] } image = "0.24" chrono = "0.4" diff --git a/frontends/web/package.json b/frontends/web/package.json index d51df2d3..39616c13 100644 --- a/frontends/web/package.json +++ b/frontends/web/package.json @@ -1,6 +1,6 @@ { "name": "boytacean-web", - "version": "0.10.6", + "version": "0.10.7", "description": "The web version of Boytacean", "repository": { "type": "git", @@ -24,7 +24,7 @@ "@typescript-eslint/eslint-plugin": "^7.16.1", "@typescript-eslint/parser": "^7.16.1", "buffer": "^6.0.3", - "emukit": "^0.10.6", + "emukit": "^0.10.7", "eslint": "^8.57.0", "jszip": "^3.10.1", "nodemon": "^3.1.4", diff --git a/setup.py b/setup.py index fb3efe9b..a4dfc1e0 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setuptools.setup( name="boytacean", - version="0.10.6", + version="0.10.7", author="João Magalhães", author_email="joamag@gmail.com", description="A Game Boy emulator that is written in Rust",