From 0bbacf82489dd8448aabdfcb5ba99f7613e41a3f Mon Sep 17 00:00:00 2001 From: Evan Maddock Date: Mon, 17 Jan 2022 17:24:44 -0500 Subject: [PATCH] Bump version to 2.6.0 and update changelog Signed-off-by: Evan Maddock --- CHANGELOG.md | 13 ++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 857b522..71d9b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,21 @@ Items marked with (Serenity) are improvements due to using an updated version of ## [Unreleased] +## [v2.6.0] - 2022-01-17 + ### Added - Support Discord servers that have Stage Channels (Serenity) - Prevent runtime errors because Discord added something that Serenity (the Discord Rust framework) doesn't implement yet (Serenity - Better error messages from Discord (Serenity) +- Slash command support via interactions + +### Removed + +- Configuration commands + - I don't think these were ever really used, and if an interface was desired, I'd much rather just build a web interface that the user can set up. +- Help command + - The help command is no longer needed since Discord commands have autocomplete. ## [v2.5.2] - 2021-04-03 @@ -118,7 +128,8 @@ Items marked with (Serenity) are improvements due to using an updated version of - Improve experience when a user sends an attachment in Discord -[unreleased]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.5.2...master +[unreleased]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.6.0...master +[v2.6.0]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.5.2...v2.6.0 [v2.5.2]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.5.1...v2.5.2 [v2.5.1]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.5.0...v2.5.1 [v2.5.0]: https://github.com/EbonJaeger/dolphin-rs/compare/v2.4.0...v2.5.0 diff --git a/Cargo.lock b/Cargo.lock index 3002546..4f30126 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,7 +291,7 @@ dependencies = [ [[package]] name = "dolphin-rs" -version = "2.5.2" +version = "2.6.0" dependencies = [ "clap", "confy", diff --git a/Cargo.toml b/Cargo.toml index 003531e..8336c3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dolphin-rs" -version = "2.5.2" +version = "2.6.0" authors = ["Evan Maddock "] edition = "2018"