Skip to content

Commit 6a53460

Browse files
committed
Release v0.20.1
1 parent c5ae7f1 commit 6a53460

File tree

23 files changed

+42
-40
lines changed

23 files changed

+42
-40
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.20.1] - 2024/05/17
11+
1012
### Added
1113

1214
- Added `dot` and `cross` product methods for `Vector2D`.

agb-debug/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb-debug"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
edition = "2021"
55
authors = ["Gwilym Inzani <[email protected]>"]
66
license = "MPL-2.0"

agb-fixnum/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "agb_fixnum"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
edition = "2021"
55
license = "MPL-2.0"
66
description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance"
77
repository = "https://github.com/agbrs/agb"
88

99
[dependencies]
10-
agb_macros = { version = "0.20.0", path = "../agb-macros" }
10+
agb_macros = { version = "0.20.1", path = "../agb-macros" }
1111
num-traits = { version = "0.2", default-features = false }

agb-gbafix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb-gbafix"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
edition = "2021"
55
authors = ["Gwilym Inzani <[email protected]>"]
66
license = "MPL-2.0"

agb-hashmap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_hashmap"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
edition = "2021"
55
license = "MPL-2.0"
66
description = "A simple no_std hashmap implementation intended for use in the `agb` library"

agb-image-converter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_image_converter"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"

agb-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_macros"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"

agb-sound-converter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_sound_converter"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"

agb/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Corwin Kuiper <[email protected]>", "Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
description = "Library for Game Boy Advance Development"
@@ -15,11 +15,11 @@ multiboot = []
1515

1616
[dependencies]
1717
bitflags = "2"
18-
agb_image_converter = { version = "0.20.0", path = "../agb-image-converter" }
19-
agb_sound_converter = { version = "0.20.0", path = "../agb-sound-converter" }
20-
agb_macros = { version = "0.20.0", path = "../agb-macros" }
21-
agb_fixnum = { version = "0.20.0", path = "../agb-fixnum" }
22-
agb_hashmap = { version = "0.20.0", path = "../agb-hashmap", features = ["allocator_api"] }
18+
agb_image_converter = { version = "0.20.1", path = "../agb-image-converter" }
19+
agb_sound_converter = { version = "0.20.1", path = "../agb-sound-converter" }
20+
agb_macros = { version = "0.20.1", path = "../agb-macros" }
21+
agb_fixnum = { version = "0.20.1", path = "../agb-fixnum" }
22+
agb_hashmap = { version = "0.20.1", path = "../agb-hashmap", features = ["allocator_api"] }
2323
bilge = "0.2"
2424
qrcodegen-no-heap = { version = "1.8", optional = true }
2525
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core"] }

book/games/pong/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
agb = { version = "0.20.0", path = "../../../agb" }
8+
agb = { version = "0.20.1", path = "../../../agb" }
99

1010
[profile.dev]
1111
opt-level = 3

examples/amplitude/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
agb = { version = "0.20.0", path = "../../agb" }
10+
agb = { version = "0.20.1", path = "../../agb" }
1111

1212
[profile.dev]
1313
opt-level = 2

examples/combo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
agb = { version = "0.20.0", path = "../../agb" }
9+
agb = { version = "0.20.1", path = "../../agb" }
1010
the-purple-night = { path = "../the-purple-night" }
1111
the-hat-chooses-the-wizard = { path = "../the-hat-chooses-the-wizard" }
1212
hyperspace-roll = { path = "../hyperspace-roll" }

examples/hyperspace-roll/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [""]
55
edition = "2021"
66

77
[dependencies]
8-
agb = { version = "0.20.0", path = "../../agb" }
8+
agb = { version = "0.20.1", path = "../../agb" }
99

1010
[profile.dev]
1111
opt-level = 3

examples/the-dungeon-puzzlers-lament/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
agb = { version = "0.20.0", path = "../../agb" }
11-
agb_tracker = { version = "0.20.0", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
10+
agb = { version = "0.20.1", path = "../../agb" }
11+
agb_tracker = { version = "0.20.1", path = "../../tracker/agb-tracker", default-features = false, features = ["xm"] }
1212
slotmap = { version = "1", default-features = false }
1313

1414
[profile.dev]

examples/the-hat-chooses-the-wizard/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
agb = { version = "0.20.0", path = "../../agb" }
10+
agb = { version = "0.20.1", path = "../../agb" }
1111

1212
[build-dependencies]
1313
serde = { version = "1.0", features = ["derive"] }

examples/the-purple-night/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2021"
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
agb = { path = "../../agb", version = "0.20.0" }
14+
agb = { path = "../../agb", version = "0.20.1" }
1515
generational-arena = { version = "0.2", default-features = false }
1616

1717
[build-dependencies]

template/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
agb = "0.20.0"
10+
agb = "0.20.1"
1111

1212
[profile.dev]
1313
opt-level = 3

tracker/agb-midi-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_midi_core"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -18,5 +18,5 @@ midly = { version = "0.5", default-features = false, features = [
1818
"std",
1919
] }
2020

21-
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop" }
22-
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
21+
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" }
22+
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }

tracker/agb-midi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_midi"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
1111
proc-macro = true
1212

1313
[dependencies]
14-
agb_midi_core = { version = "0.20.0", path = "../agb-midi-core" }
14+
agb_midi_core = { version = "0.20.1", path = "../agb-midi-core" }
1515
proc-macro-error = "1"
1616
proc-macro2 = "1"

tracker/agb-tracker-interop/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_tracker_interop"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -15,4 +15,4 @@ std = []
1515
[dependencies]
1616
quote = { version = "1", optional = true }
1717
proc-macro2 = { version = "1", optional = true }
18-
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
18+
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }

tracker/agb-tracker/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_tracker"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -13,10 +13,10 @@ xm = ["dep:agb_xm"]
1313
midi = ["dep:agb_midi"]
1414

1515
[dependencies]
16-
agb_midi = { version = "0.20.0", path = "../agb-midi", optional = true }
17-
agb_xm = { version = "0.20.0", path = "../agb-xm", optional = true }
18-
agb = { version = "0.20.0", path = "../../agb" }
19-
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop", default-features = false }
16+
agb_midi = { version = "0.20.1", path = "../agb-midi", optional = true }
17+
agb_xm = { version = "0.20.1", path = "../agb-xm", optional = true }
18+
agb = { version = "0.20.1", path = "../../agb" }
19+
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop", default-features = false }
2020

2121
[profile.dev]
2222
opt-level = 3

tracker/agb-xm-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_xm_core"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -13,7 +13,7 @@ proc-macro2 = "1"
1313
quote = "1"
1414
syn = "2"
1515

16-
agb_tracker_interop = { version = "0.20.0", path = "../agb-tracker-interop" }
17-
agb_fixnum = { version = "0.20.0", path = "../../agb-fixnum" }
16+
agb_tracker_interop = { version = "0.20.1", path = "../agb-tracker-interop" }
17+
agb_fixnum = { version = "0.20.1", path = "../../agb-fixnum" }
1818

1919
xmrs = "0.5"

tracker/agb-xm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agb_xm"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
authors = ["Gwilym Inzani <[email protected]>"]
55
edition = "2021"
66
license = "MPL-2.0"
@@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
1111
proc-macro = true
1212

1313
[dependencies]
14-
agb_xm_core = { version = "0.20.0", path = "../agb-xm-core" }
14+
agb_xm_core = { version = "0.20.1", path = "../agb-xm-core" }
1515
proc-macro-error = "1"
1616
proc-macro2 = "1"

0 commit comments

Comments
 (0)