Skip to content
Snippets Groups Projects
Verified Commit 9c1f74fd authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

version: 0.10.8

parent 4af906c0
No related branches found
Tags 0.10.8
No related merge requests found
Pipeline #5017 failed
......@@ -13,7 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
*
### Fixed
*
## [0.10.8] - 2024-08-30
### Changed
* Memoised some of the class generation process
* Updated Emukit version, for faster performance
### Fixed
......
[package]
name = "boytacean"
description = "A Game Boy emulator that is written in Rust."
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
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.7" }
boytacean-encoding = { path = "crates/encoding", version = "0.10.7" }
boytacean-hashing = { path = "crates/hashing", version = "0.10.7" }
boytacean-common = { path = "crates/common", version = "0.10.8" }
boytacean-encoding = { path = "crates/encoding", version = "0.10.8" }
boytacean-hashing = { path = "crates/hashing", version = "0.10.8" }
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.7", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
package = { version = "0.10.8", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
[package.metadata.docs.rs]
features = ["wasm", "gen-mock"]
......
[package]
name = "boytacean-common"
description = "Commons library for Boytacen."
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0"
edition = "2021"
......
[package]
name = "boytacean-encoding"
description = "Codecs library for Boytacen."
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0"
edition = "2021"
......@@ -10,8 +10,8 @@ edition = "2021"
simd = ["boytacean-hashing/simd"]
[dependencies]
boytacean-common = { path = "../common", version = "0.10.7" }
boytacean-hashing = { path = "../hashing", version = "0.10.7" }
boytacean-common = { path = "../common", version = "0.10.8" }
boytacean-hashing = { path = "../hashing", version = "0.10.8" }
[[bin]]
name = "zippy"
......
[package]
name = "boytacean-hashing"
description = "Hashing library for Boytacen."
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0"
edition = "2021"
......@@ -10,4 +10,4 @@ edition = "2021"
simd = []
[dependencies]
boytacean-common = { path = "../common", version = "0.10.7" }
boytacean-common = { path = "../common", version = "0.10.8" }
[package]
name = "boytacean-libretro"
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
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.7" }
boytacean = { path = "../..", version = "0.10.8" }
......@@ -6,7 +6,7 @@ corename = "Boytacean"
categories = "Emulator"
license = "Apache-2."
permissions = ""
display_version = "0.10.7"
display_version = "0.10.8"
# Hardware Information
manufacturer = "Nintendo"
......
[package]
name = "boytacean-sdl"
version = "0.10.7"
version = "0.10.8"
authors = ["João Magalhães <joamag@gmail.com>"]
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.7" }
boytacean-common = { path = "../../crates/common", version = "0.10.7" }
boytacean = { path = "../..", version = "0.10.8" }
boytacean-common = { path = "../../crates/common", version = "0.10.8" }
clap = { version = "4", features = ["derive"] }
image = "0.24"
chrono = "0.4"
......
{
"name": "boytacean-web",
"version": "0.10.7",
"version": "0.10.8",
"description": "The web version of Boytacean",
"repository": {
"type": "git",
......
......@@ -27,7 +27,7 @@ except ImportError:
setuptools.setup(
name="boytacean",
version="0.10.7",
version="0.10.8",
author="João Magalhães",
author_email="joamag@gmail.com",
description="A Game Boy emulator that is written in Rust",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment