From 6a5346026ab525b28c6ac05fb9dd91d896b34b3c Mon Sep 17 00:00:00 2001 From: Corwin Date: Fri, 17 May 2024 23:09:16 +0100 Subject: [PATCH] Release v0.20.1 --- 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 | 4 ++-- tracker/agb-tracker-interop/Cargo.toml | 4 ++-- tracker/agb-tracker/Cargo.toml | 10 +++++----- tracker/agb-xm-core/Cargo.toml | 6 +++--- tracker/agb-xm/Cargo.toml | 4 ++-- 23 files changed, 42 insertions(+), 40 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2bdbf6b..c00d8b8f 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.20.1] - 2024/05/17 + ### Added - Added `dot` and `cross` product methods for `Vector2D`. diff --git a/agb-debug/Cargo.toml b/agb-debug/Cargo.toml index a49571b0..369ce253 100644 --- a/agb-debug/Cargo.toml +++ b/agb-debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb-debug" -version = "0.20.0" +version = "0.20.1" edition = "2021" authors = ["Gwilym Inzani "] license = "MPL-2.0" diff --git a/agb-fixnum/Cargo.toml b/agb-fixnum/Cargo.toml index b9ea86ef..02bf0a28 100644 --- a/agb-fixnum/Cargo.toml +++ b/agb-fixnum/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "agb_fixnum" -version = "0.20.0" +version = "0.20.1" 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" repository = "https://github.com/agbrs/agb" [dependencies] -agb_macros = { version = "0.20.0", path = "../agb-macros" } +agb_macros = { version = "0.20.1", path = "../agb-macros" } num-traits = { version = "0.2", default-features = false } diff --git a/agb-gbafix/Cargo.toml b/agb-gbafix/Cargo.toml index 5baf0fdb..67a71ab6 100644 --- a/agb-gbafix/Cargo.toml +++ b/agb-gbafix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb-gbafix" -version = "0.20.0" +version = "0.20.1" edition = "2021" authors = ["Gwilym Inzani "] license = "MPL-2.0" diff --git a/agb-hashmap/Cargo.toml b/agb-hashmap/Cargo.toml index 2ed42f3e..9a866988 100644 --- a/agb-hashmap/Cargo.toml +++ b/agb-hashmap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_hashmap" -version = "0.20.0" +version = "0.20.1" 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 19b8107c..c01f79d5 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_image_converter" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index 1ddab268..66990790 100644 --- a/agb-macros/Cargo.toml +++ b/agb-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_macros" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb-sound-converter/Cargo.toml b/agb-sound-converter/Cargo.toml index dafe8c7a..bf9142c4 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_sound_converter" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" diff --git a/agb/Cargo.toml b/agb/Cargo.toml index bf6dafa6..6f59c32b 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb" -version = "0.20.0" +version = "0.20.1" authors = ["Corwin Kuiper ", "Gwilym Inzani "] edition = "2021" description = "Library for Game Boy Advance Development" @@ -15,11 +15,11 @@ multiboot = [] [dependencies] bitflags = "2" -agb_image_converter = { version = "0.20.0", path = "../agb-image-converter" } -agb_sound_converter = { version = "0.20.0", path = "../agb-sound-converter" } -agb_macros = { version = "0.20.0", path = "../agb-macros" } -agb_fixnum = { version = "0.20.0", path = "../agb-fixnum" } -agb_hashmap = { version = "0.20.0", path = "../agb-hashmap", features = ["allocator_api"] } +agb_image_converter = { version = "0.20.1", path = "../agb-image-converter" } +agb_sound_converter = { version = "0.20.1", path = "../agb-sound-converter" } +agb_macros = { version = "0.20.1", path = "../agb-macros" } +agb_fixnum = { version = "0.20.1", path = "../agb-fixnum" } +agb_hashmap = { version = "0.20.1", 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"] } diff --git a/book/games/pong/Cargo.toml b/book/games/pong/Cargo.toml index 7fed1845..686bec70 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.20.0", path = "../../../agb" } +agb = { version = "0.20.1", path = "../../../agb" } [profile.dev] opt-level = 3 diff --git a/examples/amplitude/Cargo.toml b/examples/amplitude/Cargo.toml index b674c5e3..af1e690b 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.20.0", path = "../../agb" } +agb = { version = "0.20.1", path = "../../agb" } [profile.dev] opt-level = 2 diff --git a/examples/combo/Cargo.toml b/examples/combo/Cargo.toml index 0101af49..3660d311 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.20.0", path = "../../agb" } +agb = { version = "0.20.1", 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 ccd0b27f..8cf12bc7 100644 --- a/examples/hyperspace-roll/Cargo.toml +++ b/examples/hyperspace-roll/Cargo.toml @@ -5,7 +5,7 @@ authors = [""] edition = "2021" [dependencies] -agb = { version = "0.20.0", path = "../../agb" } +agb = { version = "0.20.1", 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 c6cbc2b1..350ed270 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.20.0", path = "../../agb" } -agb_tracker = { version = "0.20.0", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] } +agb = { version = "0.20.1", path = "../../agb" } +agb_tracker = { version = "0.20.1", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] } slotmap = { version = "1", default-features = false } [profile.dev] diff --git a/examples/the-hat-chooses-the-wizard/Cargo.toml b/examples/the-hat-chooses-the-wizard/Cargo.toml index 43b8c147..67e8041a 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.20.0", path = "../../agb" } +agb = { version = "0.20.1", 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 6d007109..a1818626 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.20.0" } +agb = { path = "../../agb", version = "0.20.1" } generational-arena = { version = "0.2", default-features = false } [build-dependencies] diff --git a/template/Cargo.toml b/template/Cargo.toml index ba9f6b63..c63c2169 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.20.0" +agb = "0.20.1" [profile.dev] opt-level = 3 diff --git a/tracker/agb-midi-core/Cargo.toml b/tracker/agb-midi-core/Cargo.toml index c89e032e..9f78eae8 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.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -18,5 +18,5 @@ midly = { version = "0.5", default-features = false, features = [ "std", ] } -agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop" } -agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" } +agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" } +agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" } diff --git a/tracker/agb-midi/Cargo.toml b/tracker/agb-midi/Cargo.toml index 49183d57..c6ff18eb 100644 --- a/tracker/agb-midi/Cargo.toml +++ b/tracker/agb-midi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_midi" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb" proc-macro = true [dependencies] -agb_midi_core = { version = "0.20.0", path = "../agb-midi-core" } +agb_midi_core = { version = "0.20.1", 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 c92db6af..578754e3 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.20.0" +version = "0.20.1" 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.20.0", path = "../../agb-fixnum" } +agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" } diff --git a/tracker/agb-tracker/Cargo.toml b/tracker/agb-tracker/Cargo.toml index 48d198e2..1f2a5e1c 100644 --- a/tracker/agb-tracker/Cargo.toml +++ b/tracker/agb-tracker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_tracker" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -13,10 +13,10 @@ xm = ["dep:agb_xm"] midi = ["dep:agb_midi"] [dependencies] -agb_midi = { version = "0.20.0", path = "../agb-midi", optional = true } -agb_xm = { version = "0.20.0", path = "../agb-xm", optional = true } -agb = { version = "0.20.0", path = "../../agb" } -agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop", default-features = false } +agb_midi = { version = "0.20.1", path = "../agb-midi", optional = true } +agb_xm = { version = "0.20.1", path = "../agb-xm", optional = true } +agb = { version = "0.20.1", path = "../../agb" } +agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop", default-features = false } [profile.dev] opt-level = 3 diff --git a/tracker/agb-xm-core/Cargo.toml b/tracker/agb-xm-core/Cargo.toml index f1937224..b8a7bb0e 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.20.0" +version = "0.20.1" 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.20.0", path = "../agb-tracker-interop" } -agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" } +agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" } +agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" } xmrs = "0.5" diff --git a/tracker/agb-xm/Cargo.toml b/tracker/agb-xm/Cargo.toml index 1eb8670a..ac7cf131 100644 --- a/tracker/agb-xm/Cargo.toml +++ b/tracker/agb-xm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_xm" -version = "0.20.0" +version = "0.20.1" authors = ["Gwilym Inzani "] edition = "2021" license = "MPL-2.0" @@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb" proc-macro = true [dependencies] -agb_xm_core = { version = "0.20.0", path = "../agb-xm-core" } +agb_xm_core = { version = "0.20.1", path = "../agb-xm-core" } proc-macro-error = "1" proc-macro2 = "1"