-
Notifications
You must be signed in to change notification settings - Fork 599
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a release with various additions, improvements, and critical fixes. Of the notable changes, these include: - Fixing breakage caused by Discord from the addition of stage channels. - Fixing breakage for slash commands - Improving conformity to Discord's API (better 1-to-1 mapping of model types and builders) - Allowing reacting to messages with emojis that contain a hash, such as #️⃣ - Allowing editing and deleting messages from webhooks, and fixing breakage - Adding documentation to the `#[hook]` macro - Adding a `Parse` trait for parsing model types from strings, with auxiliary data supplied by `Context` and `Message` Of the minor changes, these include: - Preventing the help command from dispatching in DMs if the `Configuration::allow_dm` option is false - Improving documentation reader experience by informing users of code that needs the `collector` feature - Adding a way of joining lines in documentation comments for commands and groups with `\$` Breaking changes have been introduced for slash commands and webhooks, but they are excused as slash commands are locked behind a feature gate for instability, and without the change, webhooks cannot be properly deserialised.
- Loading branch information
Showing
3 changed files
with
68 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "command_attr" | ||
version = "0.3.4" | ||
version = "0.3.5" | ||
authors = ["acdenisSK <[email protected]>"] | ||
edition = "2018" | ||
description = "Procedural macros for command creation for the Serenity library." | ||
|