Skip to content

Commit

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

### Fixed

*

## [0.10.11] - 2024-08-30

### Fixed

* Major PPU related issue in state loading, which used to create PPU mode related issues

## [0.10.10] - 2024-08-30
Expand Down
10 changes: 5 additions & 5 deletions 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.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/joamag/boytacean"
Expand All @@ -25,9 +25,9 @@ cpulog = []
gen-mock = []

[dependencies]
boytacean-common = { path = "crates/common", version = "0.10.10" }
boytacean-encoding = { path = "crates/encoding", version = "0.10.10" }
boytacean-hashing = { path = "crates/hashing", version = "0.10.10" }
boytacean-common = { path = "crates/common", version = "0.10.11" }
boytacean-encoding = { path = "crates/encoding", version = "0.10.11" }
boytacean-hashing = { path = "crates/hashing", version = "0.10.11" }
wasm-bindgen = { version = "0.2", optional = true }
js-sys = { version = "0.3", optional = true }
pyo3 = { version = "0.20", optional = true }
Expand Down Expand Up @@ -67,7 +67,7 @@ members = [
"crates/encoding",
"crates/hashing"
]
package = { version = "0.10.10", authors = ["João Magalhães <[email protected]>"], edition = "2021" }
package = { version = "0.10.11", authors = ["João Magalhães <[email protected]>"], edition = "2021" }

[package.metadata.docs.rs]
features = ["wasm", "gen-mock"]
Expand Down
2 changes: 1 addition & 1 deletion crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "boytacean-common"
description = "Commons library for Boytacen."
version = "0.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions crates/encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "boytacean-encoding"
description = "Codecs library for Boytacen."
version = "0.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -10,8 +10,8 @@ edition = "2021"
simd = ["boytacean-hashing/simd"]

[dependencies]
boytacean-common = { path = "../common", version = "0.10.10" }
boytacean-hashing = { path = "../hashing", version = "0.10.10" }
boytacean-common = { path = "../common", version = "0.10.11" }
boytacean-hashing = { path = "../hashing", version = "0.10.11" }

[[bin]]
name = "zippy"
Expand Down
4 changes: 2 additions & 2 deletions crates/hashing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "boytacean-hashing"
description = "Hashing library for Boytacen."
version = "0.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -10,4 +10,4 @@ edition = "2021"
simd = []

[dependencies]
boytacean-common = { path = "../common", version = "0.10.10" }
boytacean-common = { path = "../common", version = "0.10.11" }
4 changes: 2 additions & 2 deletions frontends/libretro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boytacean-libretro"
version = "0.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
description = "A Libretro frontend for Boytacen"
license = "Apache-2.0"
Expand All @@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"]
cpulog = ["boytacean/cpulog"]

[dependencies]
boytacean = { path = "../..", version = "0.10.10" }
boytacean = { path = "../..", version = "0.10.11" }
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.10.10"
display_version = "0.10.11"

# Hardware Information
manufacturer = "Nintendo"
Expand Down
6 changes: 3 additions & 3 deletions frontends/sdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boytacean-sdl"
version = "0.10.10"
version = "0.10.11"
authors = ["João Magalhães <[email protected]>"]
description = "An SDL frontend for Boytacen"
license = "Apache-2.0"
Expand All @@ -15,8 +15,8 @@ pedantic = ["boytacean/pedantic"]
cpulog = ["boytacean/cpulog"]

[dependencies]
boytacean = { path = "../..", version = "0.10.10" }
boytacean-common = { path = "../../crates/common", version = "0.10.10" }
boytacean = { path = "../..", version = "0.10.11" }
boytacean-common = { path = "../../crates/common", version = "0.10.11" }
clap = { version = "4", features = ["derive"] }
image = "0.24"
chrono = "0.4"
Expand Down
8 changes: 5 additions & 3 deletions frontends/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boytacean-web",
"version": "0.10.10",
"version": "0.10.11",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
Expand All @@ -24,7 +24,7 @@
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"buffer": "^6.0.3",
"emukit": "^0.10.10",
"emukit": "^0.10.11",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.2",
Expand All @@ -43,6 +43,8 @@
"alias": {
"process": {
"global": "process"
}
},
"react": "./node_modules/emukit/node_modules/react",
"react-dom": "./node_modules/emukit/node_modules/react-dom"
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setuptools.setup(
name="boytacean",
version="0.10.10",
version="0.10.11",
author="João Magalhães",
author_email="[email protected]",
description="A Game Boy emulator that is written in Rust",
Expand Down

0 comments on commit d868509

Please sign in to comment.