diff --git a/CHANGELOG.md b/CHANGELOG.md index 0940ced3..6dee7c87 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.12.0] - 2022/10/11 + This version of `agb` has some exciting new features we'd like to highlight and some brand new contributors! 1. Save support for multiple cartridge types (contributed by @Lymia) diff --git a/agb-fixnum/Cargo.toml b/agb-fixnum/Cargo.toml index 2ce6f4ef..cab4ae89 100644 --- a/agb-fixnum/Cargo.toml +++ b/agb-fixnum/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "agb_fixnum" -version = "0.11.1" +version = "0.12.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.11.1", path = "../agb-macros" } +agb_macros = { version = "0.12.0", path = "../agb-macros" } diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index ad893df0..52936c28 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_image_converter" -version = "0.11.1" +version = "0.12.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index ea9e666e..a0ebe3c1 100644 --- a/agb-macros/Cargo.toml +++ b/agb-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_macros" -version = "0.11.1" +version = "0.12.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 caea2f60..5dac2df7 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb_sound_converter" -version = "0.11.1" +version = "0.12.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 29070813..2bb72e8b 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agb" -version = "0.11.1" +version = "0.12.0" authors = ["Corwin Kuiper ", "Gwilym Kuiper "] edition = "2018" description = "Library for Game Boy Advance Development" @@ -21,10 +21,10 @@ testing = [] [dependencies] bitflags = "1" -agb_image_converter = { version = "0.11.1", path = "../agb-image-converter" } -agb_sound_converter = { version = "0.11.1", path = "../agb-sound-converter" } -agb_macros = { version = "0.11.1", path = "../agb-macros" } -agb_fixnum = { version = "0.11.1", path = "../agb-fixnum" } +agb_image_converter = { version = "0.12.0", path = "../agb-image-converter" } +agb_sound_converter = { version = "0.12.0", path = "../agb-sound-converter" } +agb_macros = { version = "0.12.0", path = "../agb-macros" } +agb_fixnum = { version = "0.12.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 9d847e4d..de3fd46e 100644 --- a/book/games/pong/Cargo.lock +++ b/book/games/pong/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.11.1" +version = "0.12.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "hound", "proc-macro2", diff --git a/book/games/pong/Cargo.toml b/book/games/pong/Cargo.toml index cccce285..55e19272 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.11.1", path = "../../../agb" } +agb = { version = "0.12.0", path = "../../../agb" } [profile.dev] opt-level = 2 diff --git a/examples/hyperspace-roll/Cargo.lock b/examples/hyperspace-roll/Cargo.lock index e9a74349..32b57f70 100644 --- a/examples/hyperspace-roll/Cargo.lock +++ b/examples/hyperspace-roll/Cargo.lock @@ -16,7 +16,7 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" [[package]] name = "agb" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.11.1" +version = "0.12.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/hyperspace-roll/Cargo.toml b/examples/hyperspace-roll/Cargo.toml index 317e2525..2f1391fb 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.11.1", path = "../../agb" } +agb = { version = "0.12.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 3ffac11c..547bc058 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.11.1" +version = "0.12.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.11.1" +version = "0.12.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.11.1" +version = "0.12.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 510a14e8..d14b83a0 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.11.1", path = "../../agb" } +agb = { version = "0.12.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 8ade9367..48925331 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.11.1" +version = "0.12.0" dependencies = [ "agb_fixnum", "agb_image_converter", @@ -30,14 +30,14 @@ dependencies = [ [[package]] name = "agb_fixnum" -version = "0.11.1" +version = "0.12.0" dependencies = [ "agb_macros", ] [[package]] name = "agb_image_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "asefile", "fontdue", @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "agb_macros" -version = "0.11.1" +version = "0.12.0" dependencies = [ "proc-macro2", "quote", @@ -60,7 +60,7 @@ dependencies = [ [[package]] name = "agb_sound_converter" -version = "0.11.1" +version = "0.12.0" dependencies = [ "hound", "proc-macro2", diff --git a/examples/the-purple-night/Cargo.toml b/examples/the-purple-night/Cargo.toml index eeac7e0f..2d66e5ad 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.11.1" } +agb = { path = "../../agb", version = "0.12.0" } generational-arena = { version = "0.2", default-features = false } [build-dependencies] @@ -19,4 +19,4 @@ opt-level = 2 [profile.release] panic = "abort" -lto = true \ No newline at end of file +lto = true diff --git a/template/Cargo.toml b/template/Cargo.toml index 5f5bfafa..0f972972 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.11.1" +agb = "0.12.0" [profile.dev] opt-level = 2