Skip to content

Commit

Permalink
version: 0.10.14
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Oct 21, 2024
1 parent 1ec455f commit 797b242
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 22 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

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.13"
version = "0.10.14"
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.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 }
Expand Down Expand Up @@ -67,7 +67,7 @@ members = [
"crates/encoding",
"crates/hashing"
]
package = { version = "0.10.13", authors = ["João Magalhães <[email protected]>"], edition = "2021" }
package = { version = "0.10.14", 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.13"
version = "0.10.14"
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.13"
version = "0.10.14"
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.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"
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.13"
version = "0.10.14"
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.13" }
boytacean-common = { path = "../common", version = "0.10.14" }
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.13"
version = "0.10.14"
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.13" }
boytacean = { path = "../..", version = "0.10.14" }
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.13"
display_version = "0.10.14"

# 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.13"
version = "0.10.14"
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.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"
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.10.13",
"version": "0.10.14",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
Expand Down
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.13",
version="0.10.14",
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 797b242

Please sign in to comment.