From aba9c8363ead0e185f4189f0062c7662642c1851 Mon Sep 17 00:00:00 2001 From: kangalioo Date: Fri, 16 Dec 2022 11:52:53 +0100 Subject: [PATCH] Bump to 0.5.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a1af18d2071..1417a9f1916b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.5.2 + +New features: +- Added `track_deletion` feature to commands +- Added all of `Context`'s methods to `PrefixContext` and `ApplicationContext` + +Behavior changes: +- Editing commands not marked track_edits no longer re-runs the command +- `builtins::servers` now shows hidden statistics for the entire bot team, not just owner + # 0.5.1 New features: diff --git a/Cargo.lock b/Cargo.lock index d7bc5804a406..3c2100c117ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,7 +845,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "poise" -version = "0.5.1" +version = "0.5.2" dependencies = [ "async-trait", "derivative", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "poise_macros" -version = "0.5.1" +version = "0.5.2" dependencies = [ "darling", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 2248c9de3ed7..7d87a9480cd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["kangalioo "] edition = "2018" name = "poise" -version = "0.5.1" +version = "0.5.2" rust-version = "1.60.0" description = "A Discord bot framework for serenity" license = "MIT" @@ -13,7 +13,7 @@ tokio = { version = "1.21.1", default-features = false } # for async in general futures-core = { version = "0.3.13", default-features = false } # for async in general futures-util = { version = "0.3.13", default-features = false } # for async in general once_cell = { version = "1.7.2", default-features = false, features = ["std"] } # to store and set user data -poise_macros = { path = "macros", version = "0.5.1" } # remember to update the version on changes! +poise_macros = { path = "macros", version = "0.5.2" } # remember to update the version on changes! async-trait = { version = "0.1.48", default-features = false } # various traits regex = { version = "1.6.0", default-features = false, features = ["std"] } # prefix log = { version = "0.4.14", default-features = false } # warning about weird state diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 2d36951fda5b..68e44caa6ee9 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poise_macros" -version = "0.5.1" # remember to update the version +version = "0.5.2" # remember to update the version authors = ["kangalioo "] edition = "2018" description = "Internal macro implementation crate of poise"