diff --git a/Cargo.toml b/Cargo.toml index bf58f41b8e8..5ead503ea42 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.12.0-rc" +version = "0.12.0-rc2" edition = "2021" rust-version = "1.74" include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md", "build.rs"] @@ -51,7 +51,7 @@ ed25519-dalek = { version = "2.0.0", optional = true } typesize = { version = "0.1.2", optional = true, features = ["url", "time", "serde_json", "secrecy", "dashmap", "parking_lot", "details"] } # serde feature only allows for serialisation, # Serenity workspace crates -command_attr = { version = "0.5.0", path = "./command_attr", optional = true } +command_attr = { version = "0.5.1", 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 1946ce993be..8eee373a131 100644 --- a/command_attr/Cargo.toml +++ b/command_attr/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command_attr" -version = "0.5.0" +version = "0.5.1" authors = ["acdenisSK "] edition = "2018" description = "Procedural macros for command creation for the Serenity library."