Skip to content

Commit

Permalink
Release v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
corwinkuiper committed May 14, 2024
1 parent a0a587a commit 737b547
Show file tree
Hide file tree
Showing 23 changed files with 42 additions and 40 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.20.0] - 2024/05/14

### Added

- Added a new crash screen which provides a mechanism for seeing a full stack trace of your program when it panics.
Expand Down
2 changes: 1 addition & 1 deletion agb-debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb-debug"
version = "0.19.1"
version = "0.20.0"
edition = "2021"
authors = ["Gwilym Inzani <email@gwilym.dev>"]
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions agb-fixnum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "agb_fixnum"
version = "0.19.1"
version = "0.20.0"
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.19.1", path = "../agb-macros" }
agb_macros = { version = "0.20.0", path = "../agb-macros" }
num-traits = { version = "0.2", default-features = false }
2 changes: 1 addition & 1 deletion agb-gbafix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb-gbafix"
version = "0.19.1"
version = "0.20.0"
edition = "2021"
authors = ["Gwilym Inzani <email@gwilym.dev>"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion agb-hashmap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_hashmap"
version = "0.19.1"
version = "0.20.0"
edition = "2021"
license = "MPL-2.0"
description = "A simple no_std hashmap implementation intended for use in the `agb` library"
Expand Down
2 changes: 1 addition & 1 deletion agb-image-converter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_image_converter"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion agb-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_macros"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion agb-sound-converter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_sound_converter"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand Down
12 changes: 6 additions & 6 deletions agb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb"
version = "0.19.1"
version = "0.20.0"
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
description = "Library for Game Boy Advance Development"
Expand All @@ -15,11 +15,11 @@ multiboot = []

[dependencies]
bitflags = "2"
agb_image_converter = { version = "0.19.1", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.19.1", path = "../agb-sound-converter" }
agb_macros = { version = "0.19.1", path = "../agb-macros" }
agb_fixnum = { version = "0.19.1", path = "../agb-fixnum" }
agb_hashmap = { version = "0.19.1", path = "../agb-hashmap", features = ["allocator_api"] }
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"] }
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"] }
Expand Down
2 changes: 1 addition & 1 deletion book/games/pong/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"

[dependencies]
agb = { version = "0.19.1", path = "../../../agb" }
agb = { version = "0.20.0", path = "../../../agb" }

[profile.dev]
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion examples/amplitude/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1", path = "../../agb" }
agb = { version = "0.20.0", path = "../../agb" }

[profile.dev]
opt-level = 2
Expand Down
2 changes: 1 addition & 1 deletion examples/combo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1", path = "../../agb" }
agb = { version = "0.20.0", 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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/hyperspace-roll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [""]
edition = "2021"

[dependencies]
agb = { version = "0.19.1", path = "../../agb" }
agb = { version = "0.20.0", path = "../../agb" }

[profile.dev]
opt-level = 3
Expand Down
4 changes: 2 additions & 2 deletions examples/the-dungeon-puzzlers-lament/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1", path = "../../agb" }
agb_tracker = { version = "0.19.1", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
agb = { version = "0.20.0", path = "../../agb" }
agb_tracker = { version = "0.20.0", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
slotmap = { version = "1", default-features = false }

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion examples/the-hat-chooses-the-wizard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1", path = "../../agb" }
agb = { version = "0.20.0", path = "../../agb" }

[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/the-purple-night/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1" }
agb = { path = "../../agb", version = "0.20.0" }
generational-arena = { version = "0.2", default-features = false }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.19.1"
agb = "0.20.0"

[profile.dev]
opt-level = 3
Expand Down
6 changes: 3 additions & 3 deletions tracker/agb-midi-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_midi_core"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -18,5 +18,5 @@ midly = { version = "0.5", default-features = false, features = [
"std",
] }

agb_tracker_interop = { version = "0.19.1", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.19.1", path = "../../agb-fixnum" }
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
4 changes: 2 additions & 2 deletions tracker/agb-midi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_midi"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
proc-macro = true

[dependencies]
agb_midi_core = { version = "0.19.1", path = "../agb-midi-core" }
agb_midi_core = { version = "0.20.0", path = "../agb-midi-core" }
proc-macro-error = "1"
proc-macro2 = "1"
4 changes: 2 additions & 2 deletions tracker/agb-tracker-interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_tracker_interop"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -15,4 +15,4 @@ std = []
[dependencies]
quote = { version = "1", optional = true }
proc-macro2 = { version = "1", optional = true }
agb_fixnum = { version = "0.19.1", path = "../../agb-fixnum" }
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
10 changes: 5 additions & 5 deletions tracker/agb-tracker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_tracker"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,10 +13,10 @@ xm = ["dep:agb_xm"]
midi = ["dep:agb_midi"]

[dependencies]
agb_midi = { version = "0.19.1", path = "../agb-midi", optional = true }
agb_xm = { version = "0.19.1", path = "../agb-xm", optional = true }
agb = { version = "0.19.1", path = "../../agb" }
agb_tracker_interop = { version = "0.19.1", path = "../agb-tracker-interop", default-features = false }
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 }

[profile.dev]
opt-level = 3
Expand Down
6 changes: 3 additions & 3 deletions tracker/agb-xm-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_xm_core"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -13,7 +13,7 @@ proc-macro2 = "1"
quote = "1"
syn = "2"

agb_tracker_interop = { version = "0.19.1", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.19.1", path = "../../agb-fixnum" }
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }

xmrs = "0.5"
4 changes: 2 additions & 2 deletions tracker/agb-xm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agb_xm"
version = "0.19.1"
version = "0.20.0"
authors = ["Gwilym Inzani <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
Expand All @@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
proc-macro = true

[dependencies]
agb_xm_core = { version = "0.19.1", path = "../agb-xm-core" }
agb_xm_core = { version = "0.20.0", path = "../agb-xm-core" }
proc-macro-error = "1"
proc-macro2 = "1"

0 comments on commit 737b547

Please sign in to comment.