From b8846e9a7f35874fcb411fac35c708252a4beed0 Mon Sep 17 00:00:00 2001 From: Corwin Date: Sat, 1 Feb 2025 16:57:05 +0000 Subject: [PATCH] Release v0.21.3 --- CHANGELOG.md | 2 ++ agb-debug/Cargo.toml | 2 +- agb-fixnum/Cargo.toml | 4 ++-- agb-gbafix/Cargo.toml | 2 +- agb-hashmap/Cargo.toml | 2 +- agb-image-converter/Cargo.toml | 2 +- agb-macros/Cargo.toml | 2 +- agb-sound-converter/Cargo.toml | 2 +- agb/Cargo.toml | 12 ++++++------ book/games/pong/Cargo.toml | 2 +- examples/amplitude/Cargo.toml | 2 +- examples/combo/Cargo.toml | 2 +- examples/hyperspace-roll/Cargo.toml | 2 +- examples/the-dungeon-puzzlers-lament/Cargo.toml | 4 ++-- examples/the-hat-chooses-the-wizard/Cargo.toml | 2 +- examples/the-purple-night/Cargo.toml | 2 +- template/Cargo.toml | 2 +- tracker/agb-midi-core/Cargo.toml | 6 +++--- tracker/agb-midi/Cargo.toml | 6 +++--- tracker/agb-tracker-interop/Cargo.toml | 4 ++-- tracker/agb-tracker/Cargo.toml | 14 +++++++------- tracker/agb-xm-core/Cargo.toml | 6 +++--- tracker/agb-xm/Cargo.toml | 6 +++--- tracker/desktop-player/Cargo.toml | 6 +++--- 24 files changed, 49 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aefc0e1ca..9eb1ff765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.3] - 2025/02/01 + ## [0.21.2] - 2025/02/01 ### Added diff --git a/agb-debug/Cargo.toml b/agb-debug/Cargo.toml index 18fbd3a56..611ba075e 100644 --- a/agb-debug/Cargo.toml +++ b/agb-debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb-debug" -version = "0.21.2" +version = "0.21.3" edition = "2021" authors = ["Gwilym Inzani "] license = "MPL-2.0" diff --git a/agb-fixnum/Cargo.toml b/agb-fixnum/Cargo.toml index 461cb9978..059b1731c 100644 --- a/agb-fixnum/Cargo.toml +++ b/agb-fixnum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_fixnum" -version = "0.21.2" +version = "0.21.3" edition = "2021" license = "MPL-2.0" description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance" @@ -11,6 +11,6 @@ categories = ["no-std", "no-std::no-alloc"] serde = ["dep:serde"] [dependencies] -agb_macros = { version = "0.21.2", path = "../agb-macros" } +agb_macros = { version = "0.21.3", path = "../agb-macros" } num-traits = { version = "0.2", default-features = false } serde = { version = "1", features = ["derive"], default-features = false, optional = true } diff --git a/agb-gbafix/Cargo.toml b/agb-gbafix/Cargo.toml index 9d12eb0bd..8d5534790 100644 --- a/agb-gbafix/Cargo.toml +++ b/agb-gbafix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb-gbafix" -version = "0.21.2" +version = "0.21.3" edition = "2021" authors = ["Gwilym Inzani "] license = "MPL-2.0" diff --git a/agb-hashmap/Cargo.toml b/agb-hashmap/Cargo.toml index 513cba4f7..75a263c98 100644 --- a/agb-hashmap/Cargo.toml +++ b/agb-hashmap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_hashmap" -version = "0.21.2" +version = "0.21.3" edition = "2021" license = "MPL-2.0" description = "A simple no_std hashmap implementation intended for use in the `agb` library" diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index 88a3620d6..a54fc76be 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_image_converter" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index 49e424de0..fbc3c9f8f 100644 --- a/agb-macros/Cargo.toml +++ b/agb-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_macros" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb-sound-converter/Cargo.toml b/agb-sound-converter/Cargo.toml index 10e788b1e..377ef327e 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_sound_converter" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 51dc18f25..cb404d8bf 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb" -version = "0.21.2" +version = "0.21.3" authors = ["Corwin Kuiper ", "Gwilym Inzani "] edition = "2021" description = "Library for Game Boy Advance Development" @@ -19,11 +19,11 @@ serde = ["agb_fixnum/serde", "agb_hashmap/serde"] [dependencies] bitflags = "2" -agb_image_converter = { version = "0.21.2", path = "../agb-image-converter" } -agb_sound_converter = { version = "0.21.2", path = "../agb-sound-converter" } -agb_macros = { version = "0.21.2", path = "../agb-macros" } -agb_fixnum = { version = "0.21.2", path = "../agb-fixnum" } -agb_hashmap = { version = "0.21.2", path = "../agb-hashmap", features = ["allocator_api"] } +agb_image_converter = { version = "0.21.3", path = "../agb-image-converter" } +agb_sound_converter = { version = "0.21.3", path = "../agb-sound-converter" } +agb_macros = { version = "0.21.3", path = "../agb-macros" } +agb_fixnum = { version = "0.21.3", path = "../agb-fixnum" } +agb_hashmap = { version = "0.21.3", path = "../agb-hashmap", features = ["allocator_api"] } bilge = "0.2" qrcodegen-no-heap = { version = "1.8", optional = true } portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core", "fallback"] } diff --git a/book/games/pong/Cargo.toml b/book/games/pong/Cargo.toml index c9972d31d..4fa6cda53 100644 --- a/book/games/pong/Cargo.toml +++ b/book/games/pong/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Gwilym Inzani "] edition = "2021" [dependencies] -agb = { version = "0.21.2", path = "../../../agb" } +agb = { version = "0.21.3", path = "../../../agb" } [profile.dev] opt-level = 3 diff --git a/examples/amplitude/Cargo.toml b/examples/amplitude/Cargo.toml index 660731562..e1fe39fea 100644 --- a/examples/amplitude/Cargo.toml +++ b/examples/amplitude/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.21.2", path = "../../agb" } +agb = { version = "0.21.3", path = "../../agb" } [profile.dev] opt-level = 2 diff --git a/examples/combo/Cargo.toml b/examples/combo/Cargo.toml index 717c4cb60..be9b75cd6 100644 --- a/examples/combo/Cargo.toml +++ b/examples/combo/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.21.2", path = "../../agb" } +agb = { version = "0.21.3", path = "../../agb" } the-purple-night = { path = "../the-purple-night" } the-hat-chooses-the-wizard = { path = "../the-hat-chooses-the-wizard" } hyperspace-roll = { path = "../hyperspace-roll" } diff --git a/examples/hyperspace-roll/Cargo.toml b/examples/hyperspace-roll/Cargo.toml index 200aac6e3..1c5ecdd10 100644 --- a/examples/hyperspace-roll/Cargo.toml +++ b/examples/hyperspace-roll/Cargo.toml @@ -5,7 +5,7 @@ authors = [""] edition = "2021" [dependencies] -agb = { version = "0.21.2", path = "../../agb" } +agb = { version = "0.21.3", path = "../../agb" } [profile.dev] opt-level = 3 diff --git a/examples/the-dungeon-puzzlers-lament/Cargo.toml b/examples/the-dungeon-puzzlers-lament/Cargo.toml index 5baeb7406..3e819c13f 100644 --- a/examples/the-dungeon-puzzlers-lament/Cargo.toml +++ b/examples/the-dungeon-puzzlers-lament/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.21.2", path = "../../agb" } -agb_tracker = { version = "0.21.2", path = "../../tracker/agb-tracker" } +agb = { version = "0.21.3", path = "../../agb" } +agb_tracker = { version = "0.21.3", path = "../../tracker/agb-tracker" } slotmap = { version = "1", default-features = false } diff --git a/examples/the-hat-chooses-the-wizard/Cargo.toml b/examples/the-hat-chooses-the-wizard/Cargo.toml index 4e296dde9..1250e7719 100644 --- a/examples/the-hat-chooses-the-wizard/Cargo.toml +++ b/examples/the-hat-chooses-the-wizard/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.21.2", path = "../../agb" } +agb = { version = "0.21.3", path = "../../agb" } [build-dependencies] serde = { version = "1.0", features = ["derive"] } diff --git a/examples/the-purple-night/Cargo.toml b/examples/the-purple-night/Cargo.toml index b6b0b8942..9addc5665 100644 --- a/examples/the-purple-night/Cargo.toml +++ b/examples/the-purple-night/Cargo.toml @@ -11,7 +11,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { path = "../../agb", version = "0.21.2" } +agb = { path = "../../agb", version = "0.21.3" } generational-arena = { version = "0.2", default-features = false } [build-dependencies] diff --git a/template/Cargo.toml b/template/Cargo.toml index 733cf98fd..c24051b77 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = "0.21.2" +agb = "0.21.3" [profile.dev] opt-level = 3 diff --git a/tracker/agb-midi-core/Cargo.toml b/tracker/agb-midi-core/Cargo.toml index 814b1e51c..58a3f9479 100644 --- a/tracker/agb-midi-core/Cargo.toml +++ b/tracker/agb-midi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_midi_core" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -14,5 +14,5 @@ midly = { version = "0.5", default-features = false, features = [ "std", ] } -agb_tracker_interop = { version = "0.21.2", path = "../agb-tracker-interop" } -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } +agb_tracker_interop = { version = "0.21.3", path = "../agb-tracker-interop" } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } diff --git a/tracker/agb-midi/Cargo.toml b/tracker/agb-midi/Cargo.toml index b8ed77bf6..0e699d897 100644 --- a/tracker/agb-midi/Cargo.toml +++ b/tracker/agb-midi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_midi" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -11,8 +11,8 @@ repository = "https://github.com/agbrs/agb" proc-macro = true [dependencies] -agb_tracker_interop = { version = "0.21.2", path = "../agb-tracker-interop", features = ["quote"] } -agb_midi_core = { version = "0.21.2", path = "../agb-midi-core" } +agb_tracker_interop = { version = "0.21.3", path = "../agb-tracker-interop", features = ["quote"] } +agb_midi_core = { version = "0.21.3", path = "../agb-midi-core" } proc-macro-error = "1" proc-macro2 = "1" diff --git a/tracker/agb-tracker-interop/Cargo.toml b/tracker/agb-tracker-interop/Cargo.toml index 731995a62..b9d967e71 100644 --- a/tracker/agb-tracker-interop/Cargo.toml +++ b/tracker/agb-tracker-interop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_tracker_interop" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -15,4 +15,4 @@ std = [] [dependencies] quote = { version = "1", optional = true } proc-macro2 = { version = "1", optional = true } -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } diff --git a/tracker/agb-tracker/Cargo.toml b/tracker/agb-tracker/Cargo.toml index a262bfdcf..86f594231 100644 --- a/tracker/agb-tracker/Cargo.toml +++ b/tracker/agb-tracker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_tracker" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -16,15 +16,15 @@ xm = ["dep:agb_xm"] midi = ["dep:agb_midi"] [dependencies] -agb_midi = { version = "0.21.2", path = "../agb-midi", optional = true } -agb_xm = { version = "0.21.2", path = "../agb-xm", optional = true } -agb = { version = "0.21.2", path = "../../agb", optional = true } +agb_midi = { version = "0.21.3", path = "../agb-midi", optional = true } +agb_xm = { version = "0.21.3", path = "../agb-xm", optional = true } +agb = { version = "0.21.3", path = "../../agb", optional = true } -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } -agb_tracker_interop = { version = "0.21.2", path = "../agb-tracker-interop", default-features = false } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } +agb_tracker_interop = { version = "0.21.3", path = "../agb-tracker-interop", default-features = false } [build-dependencies] -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } [profile.dev] opt-level = 3 diff --git a/tracker/agb-xm-core/Cargo.toml b/tracker/agb-xm-core/Cargo.toml index 796ef1e48..680010fe1 100644 --- a/tracker/agb-xm-core/Cargo.toml +++ b/tracker/agb-xm-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_xm_core" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -13,7 +13,7 @@ proc-macro2 = "1" quote = "1" syn = "2" -agb_tracker_interop = { version = "0.21.2", path = "../agb-tracker-interop", default-features = false } -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } +agb_tracker_interop = { version = "0.21.3", path = "../agb-tracker-interop", default-features = false } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } xmrs = { version = "=0.8.5", features = ["std", "import"] } diff --git a/tracker/agb-xm/Cargo.toml b/tracker/agb-xm/Cargo.toml index 02b948131..8b0af47ed 100644 --- a/tracker/agb-xm/Cargo.toml +++ b/tracker/agb-xm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_xm" -version = "0.21.2" +version = "0.21.3" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -11,8 +11,8 @@ repository = "https://github.com/agbrs/agb" proc-macro = true [dependencies] -agb_xm_core = { version = "0.21.2", path = "../agb-xm-core" } -agb_tracker_interop = { version = "0.21.2", path = "../agb-tracker-interop", features = ["quote"] } +agb_xm_core = { version = "0.21.3", path = "../agb-xm-core" } +agb_tracker_interop = { version = "0.21.3", path = "../agb-tracker-interop", features = ["quote"] } proc-macro-error = "1" proc-macro2 = "1" diff --git a/tracker/desktop-player/Cargo.toml b/tracker/desktop-player/Cargo.toml index 072949364..65b283eea 100644 --- a/tracker/desktop-player/Cargo.toml +++ b/tracker/desktop-player/Cargo.toml @@ -8,9 +8,9 @@ description = "A way to play XM files on desktop as they would on the gba withou repository = "https://github.com/agbrs/agb" [dependencies] -agb_xm_core = { version = "0.21.2", path = "../agb-xm-core" } -agb_tracker = { version = "0.21.2", path = "../agb-tracker", default-features = false } -agb_fixnum = { version = "0.21.2", path = "../../agb-fixnum" } +agb_xm_core = { version = "0.21.3", path = "../agb-xm-core" } +agb_tracker = { version = "0.21.3", path = "../agb-tracker", default-features = false } +agb_fixnum = { version = "0.21.3", path = "../../agb-fixnum" } anyhow = "1" xmrs = "=0.8.5"