mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Release v0.20.1
This commit is contained in:
parent
c5ae7f1c2b
commit
6a5346026a
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.20.1] - 2024/05/17
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added `dot` and `cross` product methods for `Vector2D`.
|
- Added `dot` and `cross` product methods for `Vector2D`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb-debug"
|
name = "agb-debug"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Gwilym Inzani <email@gwilym.dev>"]
|
authors = ["Gwilym Inzani <email@gwilym.dev>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_fixnum"
|
name = "agb_fixnum"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-macros" }
|
agb_macros = { version = "0.20.1", path = "../agb-macros" }
|
||||||
num-traits = { version = "0.2", default-features = false }
|
num-traits = { version = "0.2", default-features = false }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb-gbafix"
|
name = "agb-gbafix"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Gwilym Inzani <email@gwilym.dev>"]
|
authors = ["Gwilym Inzani <email@gwilym.dev>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_hashmap"
|
name = "agb_hashmap"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_image_converter"
|
name = "agb_image_converter"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_macros"
|
name = "agb_macros"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_sound_converter"
|
name = "agb_sound_converter"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb"
|
name = "agb"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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"
|
||||||
|
@ -15,11 +15,11 @@ multiboot = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "2"
|
bitflags = "2"
|
||||||
agb_image_converter = { version = "0.20.0", path = "../agb-image-converter" }
|
agb_image_converter = { version = "0.20.1", path = "../agb-image-converter" }
|
||||||
agb_sound_converter = { version = "0.20.0", path = "../agb-sound-converter" }
|
agb_sound_converter = { version = "0.20.1", path = "../agb-sound-converter" }
|
||||||
agb_macros = { version = "0.20.0", path = "../agb-macros" }
|
agb_macros = { version = "0.20.1", path = "../agb-macros" }
|
||||||
agb_fixnum = { version = "0.20.0", path = "../agb-fixnum" }
|
agb_fixnum = { version = "0.20.1", path = "../agb-fixnum" }
|
||||||
agb_hashmap = { version = "0.20.0", path = "../agb-hashmap", features = ["allocator_api"] }
|
agb_hashmap = { version = "0.20.1", 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"] }
|
||||||
|
|
|
@ -5,7 +5,7 @@ authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb = { version = "0.20.0", path = "../../../agb" }
|
agb = { version = "0.20.1", path = "../../../agb" }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -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.0", path = "../../agb" }
|
agb = { version = "0.20.1", path = "../../agb" }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 2
|
opt-level = 2
|
||||||
|
|
|
@ -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.0", path = "../../agb" }
|
agb = { version = "0.20.1", 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" }
|
||||||
|
|
|
@ -5,7 +5,7 @@ authors = [""]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb = { version = "0.20.0", path = "../../agb" }
|
agb = { version = "0.20.1", path = "../../agb" }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -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.0", path = "../../agb" }
|
agb = { version = "0.20.1", path = "../../agb" }
|
||||||
agb_tracker = { version = "0.20.0", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
|
agb_tracker = { version = "0.20.1", 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]
|
||||||
|
|
|
@ -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.0", path = "../../agb" }
|
agb = { version = "0.20.1", path = "../../agb" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
|
@ -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.0" }
|
agb = { path = "../../agb", version = "0.20.1" }
|
||||||
generational-arena = { version = "0.2", default-features = false }
|
generational-arena = { version = "0.2", default-features = false }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
|
@ -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.0"
|
agb = "0.20.1"
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_midi_core"
|
name = "agb_midi_core"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-tracker-interop" }
|
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" }
|
||||||
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
|
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_midi"
|
name = "agb_midi"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-midi-core" }
|
agb_midi_core = { version = "0.20.1", path = "../agb-midi-core" }
|
||||||
proc-macro-error = "1"
|
proc-macro-error = "1"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_tracker_interop"
|
name = "agb_tracker_interop"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../../agb-fixnum" }
|
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_tracker"
|
name = "agb_tracker"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-midi", optional = true }
|
agb_midi = { version = "0.20.1", path = "../agb-midi", optional = true }
|
||||||
agb_xm = { version = "0.20.0", path = "../agb-xm", optional = true }
|
agb_xm = { version = "0.20.1", path = "../agb-xm", optional = true }
|
||||||
agb = { version = "0.20.0", path = "../../agb" }
|
agb = { version = "0.20.1", path = "../../agb" }
|
||||||
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop", default-features = false }
|
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop", default-features = false }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_xm_core"
|
name = "agb_xm_core"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-tracker-interop" }
|
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" }
|
||||||
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
|
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }
|
||||||
|
|
||||||
xmrs = "0.5"
|
xmrs = "0.5"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_xm"
|
name = "agb_xm"
|
||||||
version = "0.20.0"
|
version = "0.20.1"
|
||||||
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.0", path = "../agb-xm-core" }
|
agb_xm_core = { version = "0.20.1", path = "../agb-xm-core" }
|
||||||
proc-macro-error = "1"
|
proc-macro-error = "1"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
|
|
Loading…
Reference in a new issue