From 800a37f1e7c05bf3118c7990d22201ceaaa68b64 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com>
Date: Sat, 31 Aug 2024 02:42:48 +0100
Subject: [PATCH] version: 0.10.12

---
 CHANGELOG.md                                   |  6 ++++++
 Cargo.toml                                     | 10 +++++-----
 crates/common/Cargo.toml                       |  2 +-
 crates/encoding/Cargo.toml                     |  6 +++---
 crates/hashing/Cargo.toml                      |  4 ++--
 frontends/libretro/Cargo.toml                  |  4 ++--
 frontends/libretro/res/boytacean_libretro.info |  2 +-
 frontends/sdl/Cargo.toml                       |  6 +++---
 frontends/web/package.json                     |  4 ++--
 setup.py                                       |  2 +-
 10 files changed, 26 insertions(+), 20 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d1d5402..9c04992f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 *
 
+## [0.10.12] - 2024-08-30
+
+### Fixed
+
+* Extra react reference
+
 ## [0.10.11] - 2024-08-30
 
 ### Fixed
diff --git a/Cargo.toml b/Cargo.toml
index d5e48a96..1641e405 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean"
 description = "A Game Boy emulator that is written in Rust."
-version = "0.10.11"
+version = "0.10.12"
 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.11" }
-boytacean-encoding = { path = "crates/encoding", version = "0.10.11" }
-boytacean-hashing = { path = "crates/hashing", version = "0.10.11" }
+boytacean-common = { path = "crates/common", version = "0.10.12" }
+boytacean-encoding = { path = "crates/encoding", version = "0.10.12" }
+boytacean-hashing = { path = "crates/hashing", version = "0.10.12" }
 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.11", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
+package = { version = "0.10.12", authors = ["João Magalhães <joamag@gmail.com>"], edition = "2021" }
 
 [package.metadata.docs.rs]
 features = ["wasm", "gen-mock"]
diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml
index 9dc6f19d..36ec4991 100644
--- a/crates/common/Cargo.toml
+++ b/crates/common/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-common"
 description = "Commons library for Boytacen."
-version = "0.10.11"
+version = "0.10.12"
 authors = ["João Magalhães <joamag@gmail.com>"]
 license = "Apache-2.0"
 edition = "2021"
diff --git a/crates/encoding/Cargo.toml b/crates/encoding/Cargo.toml
index 76b6048b..dd96cba6 100644
--- a/crates/encoding/Cargo.toml
+++ b/crates/encoding/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-encoding"
 description = "Codecs library for Boytacen."
-version = "0.10.11"
+version = "0.10.12"
 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.11" }
-boytacean-hashing = { path = "../hashing", version = "0.10.11" }
+boytacean-common = { path = "../common", version = "0.10.12" }
+boytacean-hashing = { path = "../hashing", version = "0.10.12" }
 
 [[bin]]
 name = "zippy"
diff --git a/crates/hashing/Cargo.toml b/crates/hashing/Cargo.toml
index 4e7c3440..b139a354 100644
--- a/crates/hashing/Cargo.toml
+++ b/crates/hashing/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "boytacean-hashing"
 description = "Hashing library for Boytacen."
-version = "0.10.11"
+version = "0.10.12"
 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.11" }
+boytacean-common = { path = "../common", version = "0.10.12" }
diff --git a/frontends/libretro/Cargo.toml b/frontends/libretro/Cargo.toml
index b6f964a8..e5b66162 100644
--- a/frontends/libretro/Cargo.toml
+++ b/frontends/libretro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-libretro"
-version = "0.10.11"
+version = "0.10.12"
 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.11" }
+boytacean = { path = "../..", version = "0.10.12" }
diff --git a/frontends/libretro/res/boytacean_libretro.info b/frontends/libretro/res/boytacean_libretro.info
index 3d1830f5..56bd0dcf 100644
--- a/frontends/libretro/res/boytacean_libretro.info
+++ b/frontends/libretro/res/boytacean_libretro.info
@@ -6,7 +6,7 @@ corename = "Boytacean"
 categories = "Emulator"
 license = "Apache-2."
 permissions = ""
-display_version = "0.10.11"
+display_version = "0.10.12"
 
 # Hardware Information
 manufacturer = "Nintendo"
diff --git a/frontends/sdl/Cargo.toml b/frontends/sdl/Cargo.toml
index 092fbc53..68e6f6d6 100644
--- a/frontends/sdl/Cargo.toml
+++ b/frontends/sdl/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "boytacean-sdl"
-version = "0.10.11"
+version = "0.10.12"
 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.11" }
-boytacean-common = { path = "../../crates/common", version = "0.10.11" }
+boytacean = { path = "../..", version = "0.10.12" }
+boytacean-common = { path = "../../crates/common", version = "0.10.12" }
 clap = { version = "4", features = ["derive"] }
 image = "0.24"
 chrono = "0.4"
diff --git a/frontends/web/package.json b/frontends/web/package.json
index bab2b944..d7fc484a 100644
--- a/frontends/web/package.json
+++ b/frontends/web/package.json
@@ -1,6 +1,6 @@
 {
     "name": "boytacean-web",
-    "version": "0.10.11",
+    "version": "0.10.12",
     "description": "The web version of Boytacean",
     "repository": {
         "type": "git",
@@ -24,7 +24,7 @@
         "@typescript-eslint/eslint-plugin": "^7.18.0",
         "@typescript-eslint/parser": "^7.18.0",
         "buffer": "^6.0.3",
-        "emukit": "^0.10.11",
+        "emukit": "^0.10.12",
         "eslint": "^8.57.0",
         "eslint-plugin-import": "^2.29.1",
         "eslint-plugin-react-hooks": "^4.6.2",
diff --git a/setup.py b/setup.py
index 30e08389..746c6aec 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ except ImportError:
 
 setuptools.setup(
     name="boytacean",
-    version="0.10.11",
+    version="0.10.12",
     author="João Magalhães",
     author_email="joamag@gmail.com",
     description="A Game Boy emulator that is written in Rust",
-- 
GitLab