From adf08777e310af6f938d64f81e8b55962873bb5d Mon Sep 17 00:00:00 2001 From: Cycle Five Date: Sun, 24 Nov 2024 18:32:54 -0500 Subject: [PATCH] chore: version --- CHANGELOG.md | 2 +- Cargo.lock | 16 ++++++++-------- crack-bf/Cargo.toml | 2 +- crack-cli/Cargo.toml | 2 +- crack-core/Cargo.toml | 2 +- crack-gpt/Cargo.toml | 2 +- crack-osint/Cargo.toml | 2 +- crack-testing/Cargo.toml | 4 ++-- crack-types/Cargo.toml | 18 +++++++++--------- crack-voting/Cargo.toml | 2 +- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63adfca3f..de8cbd371 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ - [ ] Decide on whether to use ephemeral for admin messages. -## v0.3.16-alpha.1 (2024/12/12) +## v0.3.16-alpha.2 (2024/12/12) - [ ] update to serenity-next branch ## v0.3.15-alpha.2 (2024/11/23) diff --git a/Cargo.lock b/Cargo.lock index 887d3e7b1..875cef5de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1071,14 +1071,14 @@ dependencies = [ [[package]] name = "crack-bf" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "tokio", ] [[package]] name = "crack-core" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "anyhow", "async-trait", @@ -1134,7 +1134,7 @@ dependencies = [ [[package]] name = "crack-gpt" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "async-openai", "backoff", @@ -1145,7 +1145,7 @@ dependencies = [ [[package]] name = "crack-osint" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "crack-types", "ipinfo", @@ -1160,7 +1160,7 @@ dependencies = [ [[package]] name = "crack-testing" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "anyhow", "clap", @@ -1182,7 +1182,7 @@ dependencies = [ [[package]] name = "crack-types" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "humantime", "poise", @@ -1199,7 +1199,7 @@ dependencies = [ [[package]] name = "crack-voting" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "chrono", "dbl-rs", @@ -1214,7 +1214,7 @@ dependencies = [ [[package]] name = "cracktunes" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" dependencies = [ "config-file", "crack-core", diff --git a/crack-bf/Cargo.toml b/crack-bf/Cargo.toml index 6f9dded3b..afe0c0cf0 100644 --- a/crack-bf/Cargo.toml +++ b/crack-bf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-bf" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" authors = ["Cycle Five "] publish = true diff --git a/crack-cli/Cargo.toml b/crack-cli/Cargo.toml index 19995fffa..7283f95b2 100644 --- a/crack-cli/Cargo.toml +++ b/crack-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Cycle Five "] name = "cracktunes" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" description = "Cracktunes is a hassle-free, highly performant, host-it-yourself, cracking smoking, discord-music-bot." publish = true edition = "2021" diff --git a/crack-core/Cargo.toml b/crack-core/Cargo.toml index 39074ce91..c50ef772b 100644 --- a/crack-core/Cargo.toml +++ b/crack-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-core" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" authors = ["Cycle Five "] edition = "2021" description = "Core module for the cracking smoking, discord-music-bot Cracktunes." diff --git a/crack-gpt/Cargo.toml b/crack-gpt/Cargo.toml index d9c5232f9..9b166b9ac 100644 --- a/crack-gpt/Cargo.toml +++ b/crack-gpt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-gpt" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" authors = ["Cycle Five "] publish = true diff --git a/crack-osint/Cargo.toml b/crack-osint/Cargo.toml index adaa6ef02..5b9b203b2 100644 --- a/crack-osint/Cargo.toml +++ b/crack-osint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-osint" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" authors = ["Cycle Five "] publish = true diff --git a/crack-testing/Cargo.toml b/crack-testing/Cargo.toml index 510595694..d2860c064 100644 --- a/crack-testing/Cargo.toml +++ b/crack-testing/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Cycle Five "] name = "crack-testing" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" publish = true license = "MIT" @@ -34,7 +34,7 @@ reqwest = { version = "0.12.9", default-features = false, features = [ ] } serenity = { workspace = true } tracing = "0.1.40" -tokio = { workspace = true } +tokio = { workspace = true } thiserror = "1.0.69" poise = { branch = "serenity-next", git = "https://github.com/serenity-rs/poise", default-features = true } url = "2.5" diff --git a/crack-types/Cargo.toml b/crack-types/Cargo.toml index 2a3fe5bc1..87c975f14 100644 --- a/crack-types/Cargo.toml +++ b/crack-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-types" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" authors = ["Cycle Five "] publish = true @@ -26,14 +26,14 @@ serenity = { workspace = true } tokio = { workspace = true } typemap_rev = "0.3.0" reqwest = { version = "0.12.9", default-features = false, features = [ - "blocking", - "json", - "multipart", - "rustls-tls", - "cookies", - "charset", - "http2", - "macos-system-configuration", + "blocking", + "json", + "multipart", + "rustls-tls", + "cookies", + "charset", + "http2", + "macos-system-configuration", ] } url = "2.5" thiserror = "1.0.69" diff --git a/crack-voting/Cargo.toml b/crack-voting/Cargo.toml index 81a77efe3..2827c80f7 100644 --- a/crack-voting/Cargo.toml +++ b/crack-voting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crack-voting" -version = "0.3.16-alpha.1" +version = "0.3.16-alpha.2" edition = "2021" authors = ["Cycle Five "] publish = true