Skip to content

Commit

Permalink
version: 0.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 8, 2024
1 parent 128e982 commit a6436af
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6"
version = "0.10.7"
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.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 }
Expand Down Expand Up @@ -67,7 +67,7 @@ members = [
"crates/encoding",
"crates/hashing"
]
package = { version = "0.10.6", authors = ["João Magalhães <[email protected]>"], edition = "2018" }
package = { version = "0.10.7", authors = ["João Magalhães <[email protected]>"], edition = "2018" }

[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.6"
version = "0.10.7"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
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.6"
version = "0.10.7"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion 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.6"
version = "0.10.7"
authors = ["João Magalhães <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
Expand Down
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.6"
version = "0.10.7"
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.6" }
boytacean = { path = "../..", version = "0.10.7" }
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.6"
display_version = "0.10.7"

# 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.6"
version = "0.10.7"
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.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"
Expand Down
4 changes: 2 additions & 2 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.6",
"version": "0.10.7",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
Expand All @@ -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",
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.6",
version="0.10.7",
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 a6436af

Please sign in to comment.