diff --git a/CHANGELOG.md b/CHANGELOG.md index cb30559a..f784d369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2023/01/19 + ### Added - Added missed implementations of `regular()` and `affine()` to `Tiled1` which made `Tiled1` impossible to use. diff --git a/agb-fixnum/Cargo.toml b/agb-fixnum/Cargo.toml index a752a72d..2b97d8c4 100644 --- a/agb-fixnum/Cargo.toml +++ b/agb-fixnum/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.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.12.2", path = "../agb-macros" } +agb_macros = { version = "0.13.0", path = "../agb-macros" } diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index 33e2c4fa..640646d3 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index 82216e65..e99e40cb 100644 --- a/agb-macros/Cargo.toml +++ b/agb-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" diff --git a/agb-sound-converter/Cargo.toml b/agb-sound-converter/Cargo.toml index 846b8d4e..ad1ed104 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" diff --git a/agb/Cargo.toml b/agb/Cargo.toml index b3b2c23d..36659cdf 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb" -version = "0.12.2" +version = "0.13.0" authors = ["Corwin Kuiper ", "Gwilym Kuiper "] edition = "2021" description = "Library for Game Boy Advance Development" @@ -22,10 +22,10 @@ testing = [] [dependencies] bitflags = "1" -agb_image_converter = { version = "0.12.2", path = "../agb-image-converter" } -agb_sound_converter = { version = "0.12.2", path = "../agb-sound-converter" } -agb_macros = { version = "0.12.2", path = "../agb-macros" } -agb_fixnum = { version = "0.12.2", path = "../agb-fixnum" } +agb_image_converter = { version = "0.13.0", path = "../agb-image-converter" } +agb_sound_converter = { version = "0.13.0", path = "../agb-sound-converter" } +agb_macros = { version = "0.13.0", path = "../agb-macros" } +agb_fixnum = { version = "0.13.0", path = "../agb-fixnum" } bare-metal = "1" modular-bitfield = "0.11" rustc-hash = { version = "1", default-features = false } diff --git a/book/games/pong/Cargo.lock b/book/games/pong/Cargo.lock index cf19a98d..98dee7c7 100644 --- a/book/games/pong/Cargo.lock +++ b/book/games/pong/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "hound", "proc-macro2", diff --git a/book/games/pong/Cargo.toml b/book/games/pong/Cargo.toml index 84fd0f41..1ce429ba 100644 --- a/book/games/pong/Cargo.toml +++ b/book/games/pong/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.12.2", path = "../../../agb" } +agb = { version = "0.13.0", path = "../../../agb" } [profile.dev] opt-level = 2 diff --git a/examples/combo/Cargo.lock b/examples/combo/Cargo.lock index 757b8a5a..75e2318e 100644 --- a/examples/combo/Cargo.lock +++ b/examples/combo/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/combo/Cargo.toml b/examples/combo/Cargo.toml index 2d556216..bbe5f663 100644 --- a/examples/combo/Cargo.toml +++ b/examples/combo/Cargo.toml @@ -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.12.2", path = "../../agb" } +agb = { version = "0.13.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" } diff --git a/examples/hyperspace-roll/Cargo.lock b/examples/hyperspace-roll/Cargo.lock index 843a8d2c..106edc4a 100644 --- a/examples/hyperspace-roll/Cargo.lock +++ b/examples/hyperspace-roll/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/hyperspace-roll/Cargo.toml b/examples/hyperspace-roll/Cargo.toml index 0178567a..1e7fa990 100644 --- a/examples/hyperspace-roll/Cargo.toml +++ b/examples/hyperspace-roll/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.12.2", path = "../../agb" } +agb = { version = "0.13.0", path = "../../agb" } bare-metal = "1" [profile.dev] diff --git a/examples/the-hat-chooses-the-wizard/Cargo.lock b/examples/the-hat-chooses-the-wizard/Cargo.lock index 5b111761..18a8d92e 100644 --- a/examples/the-hat-chooses-the-wizard/Cargo.lock +++ b/examples/the-hat-chooses-the-wizard/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/the-hat-chooses-the-wizard/Cargo.toml b/examples/the-hat-chooses-the-wizard/Cargo.toml index 8ecebcb8..ce704184 100644 --- a/examples/the-hat-chooses-the-wizard/Cargo.toml +++ b/examples/the-hat-chooses-the-wizard/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { version = "0.12.2", path = "../../agb" } +agb = { version = "0.13.0", path = "../../agb" } [build-dependencies] serde = { version = "1.0", features = ["derive"] } diff --git a/examples/the-purple-night/Cargo.lock b/examples/the-purple-night/Cargo.lock index 9e49be81..74746a09 100644 --- a/examples/the-purple-night/Cargo.lock +++ b/examples/the-purple-night/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.12.2" +version = "0.13.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.12.2" +version = "0.13.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.12.2" +version = "0.13.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/the-purple-night/Cargo.toml b/examples/the-purple-night/Cargo.toml index bfb01cdc..4368a0d4 100644 --- a/examples/the-purple-night/Cargo.toml +++ b/examples/the-purple-night/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = { path = "../../agb", version = "0.12.2" } +agb = { path = "../../agb", version = "0.13.0" } generational-arena = { version = "0.2", default-features = false } [build-dependencies] diff --git a/template/Cargo.toml b/template/Cargo.toml index 5f292abf..f5b657cb 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -agb = "0.12.2" +agb = "0.13.0" [profile.dev] opt-level = 2