-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 } | ||
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -10,4 +10,4 @@ edition = "2021" | |
simd = [] | ||
|
||
[dependencies] | ||
boytacean-common = { path = "../common", version = "0.10.10" } | ||
boytacean-common = { path = "../common", version = "0.10.11" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"] | |
cpulog = ["boytacean/cpulog"] | ||
|
||
[dependencies] | ||
boytacean = { path = "../..", version = "0.10.10" } | ||
boytacean = { path = "../..", version = "0.10.11" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|