From fdf9f3761fa9831691efaf67e92d7bfe93bd3ab9 Mon Sep 17 00:00:00 2001 From: "Alex M. M." Date: Sun, 19 Nov 2023 22:04:10 +0100 Subject: [PATCH] Bump versions --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- command_attr/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 877f23fc65c..7a25acc836d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5325,7 +5325,7 @@ Initial commit. -[0.12.0]: https://github.com/serenity-rs/serenity/compare/v0.11.7...v0.12.0 +[0.12.0]: https://github.com/serenity-rs/serenity/compare/v0.11.7...v0.12.0-rc [0.11.7]: https://github.com/serenity-rs/serenity/compare/v0.11.6...v0.11.7 [0.11.6]: https://github.com/serenity-rs/serenity/compare/v0.11.5...v0.11.6 [0.11.5]: https://github.com/serenity-rs/serenity/compare/v0.11.4...v0.11.5 diff --git a/Cargo.toml b/Cargo.toml index 954ec2e7237..d8fa5bba85c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "ISC" name = "serenity" readme = "README.md" repository = "https://github.com/serenity-rs/serenity.git" -version = "0.11.7" +version = "0.12.0-rc" edition = "2021" rust-version = "1.74" include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md", "build.rs"] @@ -50,7 +50,7 @@ parking_lot = { version = "0.12.1", optional = true } ed25519-dalek = { version = "2.0.0", optional = true } # serde feature only allows for serialisation, # Serenity workspace crates -command_attr = { version = "0.4.2", path = "./command_attr", optional = true } +command_attr = { version = "0.5.0", path = "./command_attr", optional = true } serenity-voice-model = { version = "0.1.1", path = "./voice-model", optional = true } [dev-dependencies.http_crate] diff --git a/command_attr/Cargo.toml b/command_attr/Cargo.toml index 23eea14b3ea..1946ce993be 100644 --- a/command_attr/Cargo.toml +++ b/command_attr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command_attr" -version = "0.4.2" +version = "0.5.0" authors = ["acdenisSK "] edition = "2018" description = "Procedural macros for command creation for the Serenity library."