Skip to content

Commit

Permalink
Release v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gwilymk committed Mar 6, 2024
1 parent ec2bbb3 commit 66ec762
Show file tree
Hide file tree
Showing 31 changed files with 93 additions and 91 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.19.0] - 2024/03/06

### Added
- Added `.priority()`, `.set_priority()` and `.is_visible()` to `RegularMap`, `AffineMap` and `InfiniteScrolledMap`.
- Replaced `.show()` and `.hide()` with `.set_visible()`in `RegularMap`, `AffineMap` and `InfiniteScrolledMap`.
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.18.1"
version = "0.19.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.18.1", path = "../agb-macros" }
agb_macros = { version = "0.19.0", path = "../agb-macros" }
num = { version = "0.4", default-features = false }
2 changes: 1 addition & 1 deletion agb-gbafix/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.18.1"
version = "0.19.0"
edition = "2021"
authors = ["Gwilym Inzani <[email protected]>"]
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.18.1"
version = "0.19.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.18.1"
version = "0.19.0"
authors = ["Gwilym Inzani <[email protected]>"]
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.18.1"
version = "0.19.0"
authors = ["Gwilym Inzani <[email protected]>"]
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.18.1"
version = "0.19.0"
authors = ["Gwilym Inzani <[email protected]>"]
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.18.1"
version = "0.19.0"
authors = ["Corwin Kuiper <[email protected]>", "Gwilym Inzani <[email protected]>"]
edition = "2021"
description = "Library for Game Boy Advance Development"
Expand All @@ -14,11 +14,11 @@ multiboot = []

[dependencies]
bitflags = "2"
agb_image_converter = { version = "0.18.1", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.18.1", path = "../agb-sound-converter" }
agb_macros = { version = "0.18.1", path = "../agb-macros" }
agb_fixnum = { version = "0.18.1", path = "../agb-fixnum" }
agb_hashmap = { version = "0.18.1", path = "../agb-hashmap" }
agb_image_converter = { version = "0.19.0", path = "../agb-image-converter" }
agb_sound_converter = { version = "0.19.0", path = "../agb-sound-converter" }
agb_macros = { version = "0.19.0", path = "../agb-macros" }
agb_fixnum = { version = "0.19.0", path = "../agb-fixnum" }
agb_hashmap = { version = "0.19.0", path = "../agb-hashmap" }
bare-metal = "1"
bilge = "0.2"

Expand Down
12 changes: 6 additions & 6 deletions book/games/pong/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 <[email protected]>"]
edition = "2021"

[dependencies]
agb = { version = "0.18.1", path = "../../../agb" }
agb = { version = "0.19.0", path = "../../../agb" }

[profile.dev]
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion emulator/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions examples/amplitude/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.18.1", path = "../../agb" }
agb = { version = "0.19.0", path = "../../agb" }

[profile.dev]
opt-level = 2
Expand Down
20 changes: 10 additions & 10 deletions examples/combo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.18.1", path = "../../agb" }
agb = { version = "0.19.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
12 changes: 6 additions & 6 deletions examples/hyperspace-roll/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.18.1", path = "../../agb" }
agb = { version = "0.19.0", path = "../../agb" }

[profile.dev]
opt-level = 3
Expand Down
Loading

0 comments on commit 66ec762

Please sign in to comment.