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

version: 0.10.5

parent 9df49d64
No related branches found
No related tags found
No related merge requests found
Pipeline #4852 failed
...@@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -9,9 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
* `Licensee` enumeration with the description of the publisher of the ROM *
* Support for Zippy encoding format for fast compression
* New hashing crate that includes CRC-32 and CRC-32C implementations
### Changed ### Changed
...@@ -19,6 +17,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -19,6 +17,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
*
## [0.10.5] - 2024-08-08
### Added
* `Licensee` enumeration with the description of the publisher of the ROM
* Support for Zippy encoding format for fast compression
* New hashing crate that includes CRC-32 and CRC-32C implementations
### Fixed
* Issue with the web frontend and `hardReset()` implementation * Issue with the web frontend and `hardReset()` implementation
## [0.10.4] - 2024-07-16 ## [0.10.4] - 2024-07-16
......
[package] [package]
name = "boytacean" name = "boytacean"
description = "A Game Boy emulator that is written in Rust." description = "A Game Boy emulator that is written in Rust."
version = "0.10.4" version = "0.10.5"
authors = ["João Magalhães <joamag@gmail.com>"] authors = ["João Magalhães <joamag@gmail.com>"]
license = "Apache-2.0" license = "Apache-2.0"
repository = "https://github.com/joamag/boytacean" repository = "https://github.com/joamag/boytacean"
...@@ -25,9 +25,9 @@ cpulog = [] ...@@ -25,9 +25,9 @@ cpulog = []
gen-mock = [] gen-mock = []
[dependencies] [dependencies]
boytacean-common = { path = "crates/common", version = "0.10.4" } boytacean-common = { path = "crates/common", version = "0.10.5" }
boytacean-encoding = { path = "crates/encoding", version = "0.10.4" } boytacean-encoding = { path = "crates/encoding", version = "0.10.5" }
boytacean-hashing = { path = "crates/hashing", version = "0.10.4" } boytacean-hashing = { path = "crates/hashing", version = "0.10.5" }
wasm-bindgen = { version = "0.2", optional = true } wasm-bindgen = { version = "0.2", optional = true }
js-sys = { version = "0.3", optional = true } js-sys = { version = "0.3", optional = true }
pyo3 = { version = "0.20", optional = true } pyo3 = { version = "0.20", optional = true }
...@@ -67,7 +67,7 @@ members = [ ...@@ -67,7 +67,7 @@ members = [
"crates/encoding", "crates/encoding",
"crates/hashing" "crates/hashing"
] ]
package = { version = "0.10.4", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2018" } package = { version = "0.10.5", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2018" }
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = ["wasm", "gen-mock"] features = ["wasm", "gen-mock"]
......
[package] [package]
name = "boytacean-common" name = "boytacean-common"
version = "0.10.4" version = "0.10.5"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
......
[package] [package]
name = "boytacean-encoding" name = "boytacean-encoding"
version = "0.10.4" version = "0.10.5"
edition = "2018" edition = "2018"
[features] [features]
simd = ["boytacean-hashing/simd"] simd = ["boytacean-hashing/simd"]
[dependencies] [dependencies]
boytacean-common = { path = "../common", version = "0.10.4" } boytacean-common = { path = "../common", version = "0.10.5" }
boytacean-hashing = { path = "../hashing", version = "0.10.4" } boytacean-hashing = { path = "../hashing", version = "0.10.5" }
[package] [package]
name = "boytacean-hashing" name = "boytacean-hashing"
version = "0.10.4" version = "0.10.5"
edition = "2018" edition = "2018"
[features] [features]
......
[package] [package]
name = "boytacean-libretro" name = "boytacean-libretro"
version = "0.10.4" version = "0.10.5"
authors = ["João Magalhães <joamag@gmail.com>"] authors = ["João Magalhães <joamag@gmail.com>"]
description = "A Libretro frontend for Boytacen" description = "A Libretro frontend for Boytacen"
license = "Apache-2.0" license = "Apache-2.0"
...@@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"] ...@@ -17,4 +17,4 @@ pedantic = ["boytacean/pedantic"]
cpulog = ["boytacean/cpulog"] cpulog = ["boytacean/cpulog"]
[dependencies] [dependencies]
boytacean = { path = "../..", version = "0.10.4" } boytacean = { path = "../..", version = "0.10.5" }
...@@ -6,7 +6,7 @@ corename = "Boytacean" ...@@ -6,7 +6,7 @@ corename = "Boytacean"
categories = "Emulator" categories = "Emulator"
license = "Apache-2." license = "Apache-2."
permissions = "" permissions = ""
display_version = "0.10.4" display_version = "0.10.5"
# Hardware Information # Hardware Information
manufacturer = "Nintendo" manufacturer = "Nintendo"
......
[package] [package]
name = "boytacean-sdl" name = "boytacean-sdl"
version = "0.10.4" version = "0.10.5"
authors = ["João Magalhães <joamag@gmail.com>"] authors = ["João Magalhães <joamag@gmail.com>"]
description = "An SDL frontend for Boytacen" description = "An SDL frontend for Boytacen"
license = "Apache-2.0" license = "Apache-2.0"
...@@ -15,8 +15,8 @@ pedantic = ["boytacean/pedantic"] ...@@ -15,8 +15,8 @@ pedantic = ["boytacean/pedantic"]
cpulog = ["boytacean/cpulog"] cpulog = ["boytacean/cpulog"]
[dependencies] [dependencies]
boytacean = { path = "../..", version = "0.10.4" } boytacean = { path = "../..", version = "0.10.5" }
boytacean-common = { path = "../../crates/common", version = "0.10.4" } boytacean-common = { path = "../../crates/common", version = "0.10.5" }
clap = { version = "4", features = ["derive"] } clap = { version = "4", features = ["derive"] }
image = "0.24" image = "0.24"
chrono = "0.4" chrono = "0.4"
......
{ {
"name": "boytacean-web", "name": "boytacean-web",
"version": "0.10.4", "version": "0.10.5",
"description": "The web version of Boytacean", "description": "The web version of Boytacean",
"repository": { "repository": {
"type": "git", "type": "git",
......
...@@ -27,7 +27,7 @@ except ImportError: ...@@ -27,7 +27,7 @@ except ImportError:
setuptools.setup( setuptools.setup(
name="boytacean", name="boytacean",
version="0.10.4", version="0.10.5",
author="João Magalhães", author="João Magalhães",
author_email="joamag@gmail.com", author_email="joamag@gmail.com",
description="A Game Boy emulator that is written in Rust", 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.
Please register or to comment