Release v0.20.3

This commit is contained in:
Corwin 2024-06-12 17:57:39 +01:00
parent 5ca9cd5480
commit a6e4be0577
No known key found for this signature in database
23 changed files with 42 additions and 40 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.20.3] - 2024/06/12
### Added ### Added
- Added `find_colour_index_16` and `find_colour_index_256` to the `VRamManager` to find where a colour is in a palette. - Added `find_colour_index_16` and `find_colour_index_256` to the `VRamManager` to find where a colour is in a palette.

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb-debug" name = "agb-debug"
version = "0.20.2" version = "0.20.3"
edition = "2021" edition = "2021"
authors = ["Gwilym Inzani <email@gwilym.dev>"] authors = ["Gwilym Inzani <email@gwilym.dev>"]
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,11 +1,11 @@
[package] [package]
name = "agb_fixnum" name = "agb_fixnum"
version = "0.20.2" version = "0.20.3"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance" 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" repository = "https://github.com/agbrs/agb"
[dependencies] [dependencies]
agb_macros = { version = "0.20.2", path = "../agb-macros" } agb_macros = { version = "0.20.3", path = "../agb-macros" }
num-traits = { version = "0.2", default-features = false } num-traits = { version = "0.2", default-features = false }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb-gbafix" name = "agb-gbafix"
version = "0.20.2" version = "0.20.3"
edition = "2021" edition = "2021"
authors = ["Gwilym Inzani <email@gwilym.dev>"] authors = ["Gwilym Inzani <email@gwilym.dev>"]
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_hashmap" name = "agb_hashmap"
version = "0.20.2" version = "0.20.3"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
description = "A simple no_std hashmap implementation intended for use in the `agb` library" description = "A simple no_std hashmap implementation intended for use in the `agb` library"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_image_converter" name = "agb_image_converter"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_macros" name = "agb_macros"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_sound_converter" name = "agb_sound_converter"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb" name = "agb"
version = "0.20.2" version = "0.20.3"
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"] authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
description = "Library for Game Boy Advance Development" description = "Library for Game Boy Advance Development"
@ -16,11 +16,11 @@ multiboot = []
[dependencies] [dependencies]
bitflags = "2" bitflags = "2"
agb_image_converter = { version = "0.20.2", path = "../agb-image-converter" } agb_image_converter = { version = "0.20.3", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.20.2", path = "../agb-sound-converter" } agb_sound_converter = { version = "0.20.3", path = "../agb-sound-converter" }
agb_macros = { version = "0.20.2", path = "../agb-macros" } agb_macros = { version = "0.20.3", path = "../agb-macros" }
agb_fixnum = { version = "0.20.2", path = "../agb-fixnum" } agb_fixnum = { version = "0.20.3", path = "../agb-fixnum" }
agb_hashmap = { version = "0.20.2", path = "../agb-hashmap", features = ["allocator_api"] } agb_hashmap = { version = "0.20.3", path = "../agb-hashmap", features = ["allocator_api"] }
bilge = "0.2" bilge = "0.2"
qrcodegen-no-heap = { version = "1.8", optional = true } qrcodegen-no-heap = { version = "1.8", optional = true }
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] } portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] }

View file

@ -5,7 +5,7 @@ authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../../agb" } agb = { version = "0.20.3", path = "../../../agb" }
[profile.dev] [profile.dev]
opt-level = 3 opt-level = 3

View file

@ -7,7 +7,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
[profile.dev] [profile.dev]
opt-level = 2 opt-level = 2

View file

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
the-purple-night = { path = "../the-purple-night" } the-purple-night = { path = "../the-purple-night" }
the-hat-chooses-the-wizard = { path = "../the-hat-chooses-the-wizard" } the-hat-chooses-the-wizard = { path = "../the-hat-chooses-the-wizard" }
hyperspace-roll = { path = "../hyperspace-roll" } hyperspace-roll = { path = "../hyperspace-roll" }

View file

@ -5,7 +5,7 @@ authors = [""]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
[profile.dev] [profile.dev]
opt-level = 3 opt-level = 3

View file

@ -7,8 +7,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
agb_tracker = { version = "0.20.2", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] } agb_tracker = { version = "0.20.3", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
slotmap = { version = "1", default-features = false } slotmap = { version = "1", default-features = false }
[profile.dev] [profile.dev]

View file

@ -7,7 +7,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
[build-dependencies] [build-dependencies]
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }

View file

@ -11,7 +11,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = { path = "../../agb", version = "0.20.2" } agb = { path = "../../agb", version = "0.20.3" }
generational-arena = { version = "0.2", default-features = false } generational-arena = { version = "0.2", default-features = false }
[build-dependencies] [build-dependencies]

View file

@ -7,7 +7,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
agb = "0.20.2" agb = "0.20.3"
[profile.dev] [profile.dev]
opt-level = 3 opt-level = 3

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_midi_core" name = "agb_midi_core"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -18,5 +18,5 @@ midly = { version = "0.5", default-features = false, features = [
"std", "std",
] } ] }
agb_tracker_interop = { version = "0.20.2", path = "../agb-tracker-interop" } agb_tracker_interop = { version = "0.20.3", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.20.2", path = "../../agb-fixnum" } agb_fixnum = { version = "0.20.3", path = "../../agb-fixnum" }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_midi" name = "agb_midi"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
proc-macro = true proc-macro = true
[dependencies] [dependencies]
agb_midi_core = { version = "0.20.2", path = "../agb-midi-core" } agb_midi_core = { version = "0.20.3", path = "../agb-midi-core" }
proc-macro-error = "1" proc-macro-error = "1"
proc-macro2 = "1" proc-macro2 = "1"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_tracker_interop" name = "agb_tracker_interop"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -15,4 +15,4 @@ std = []
[dependencies] [dependencies]
quote = { version = "1", optional = true } quote = { version = "1", optional = true }
proc-macro2 = { version = "1", optional = true } proc-macro2 = { version = "1", optional = true }
agb_fixnum = { version = "0.20.2", path = "../../agb-fixnum" } agb_fixnum = { version = "0.20.3", path = "../../agb-fixnum" }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_tracker" name = "agb_tracker"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -13,10 +13,10 @@ xm = ["dep:agb_xm"]
midi = ["dep:agb_midi"] midi = ["dep:agb_midi"]
[dependencies] [dependencies]
agb_midi = { version = "0.20.2", path = "../agb-midi", optional = true } agb_midi = { version = "0.20.3", path = "../agb-midi", optional = true }
agb_xm = { version = "0.20.2", path = "../agb-xm", optional = true } agb_xm = { version = "0.20.3", path = "../agb-xm", optional = true }
agb = { version = "0.20.2", path = "../../agb" } agb = { version = "0.20.3", path = "../../agb" }
agb_tracker_interop = { version = "0.20.2", path = "../agb-tracker-interop", default-features = false } agb_tracker_interop = { version = "0.20.3", path = "../agb-tracker-interop", default-features = false }
[profile.dev] [profile.dev]
opt-level = 3 opt-level = 3

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_xm_core" name = "agb_xm_core"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -13,7 +13,7 @@ proc-macro2 = "1"
quote = "1" quote = "1"
syn = "2" syn = "2"
agb_tracker_interop = { version = "0.20.2", path = "../agb-tracker-interop" } agb_tracker_interop = { version = "0.20.3", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.20.2", path = "../../agb-fixnum" } agb_fixnum = { version = "0.20.3", path = "../../agb-fixnum" }
xmrs = "0.6" xmrs = "0.6"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "agb_xm" name = "agb_xm"
version = "0.20.2" version = "0.20.3"
authors = ["Gwilym Inzani <gw@ilym.me>"] authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
proc-macro = true proc-macro = true
[dependencies] [dependencies]
agb_xm_core = { version = "0.20.2", path = "../agb-xm-core" } agb_xm_core = { version = "0.20.3", path = "../agb-xm-core" }
proc-macro-error = "1" proc-macro-error = "1"
proc-macro2 = "1" proc-macro2 = "1"