forked from projectmoon/tenebrous-dicebot
Version 0.9.0. Bug fix release.
- Properly reject large numbers outside bounds of i32 when rolling dice. - Avoid unnecessary clone of error message when calculating dice amounts. - Allow up to 50 commands to be executed per message. - Show failed commands with errors when executing multiple commands. - Properly format dice plurality when rolling CofD dice pools. - Use 'username pills' instead of raw user ID in response messages. - Update matrix SDK to latest. - General code reorganization for better maintainability.
This commit is contained in:
parent
12b7d355d2
commit
b3cd7266e4
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "chronicle-dicebot"
|
name = "chronicle-dicebot"
|
||||||
version = "0.8.0"
|
version = "0.9.0"
|
||||||
authors = ["Taylor C. Richberger <taywee@gmx.com>", "projectmoon <projectmoon@agnos.is>"]
|
authors = ["Taylor C. Richberger <taywee@gmx.com>", "projectmoon <projectmoon@agnos.is>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = 'MIT'
|
license = 'MIT'
|
||||||
|
@ -39,4 +39,4 @@ features = ['derive']
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
features = [ "full" ]
|
features = [ "full" ]
|
||||||
|
|
Loading…
Reference in New Issue