diff options
| author | Zeyla Hellyer <[email protected]> | 2018-01-31 15:14:03 -0800 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2018-01-31 15:14:03 -0800 |
| commit | 280a0480bb5dd97998bad86fb11c45a94126123f (patch) | |
| tree | ac705922c1c57a9fa5eeec94f62f6155d2109041 | |
| parent | Execute framework commands in a ThreadPool (diff) | |
| download | serenity-v0.4.x.tar.xz serenity-v0.4.x.zip | |
| -rw-r--r-- | CHANGELOG.md | 14 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 328435e..65d788b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,16 @@ All notable changes to this project will be documented in this file. This project mostly adheres to [Semantic Versioning][semver]. -## [0.4.7] - 2018-1-5 +## [0.4.8] - 2018-01-31 + +This release contains a fix for managing panics in framework command dispatches. +A threadpool is now used, just like for event dispatches. + +### Fixed + +- [framework] Execute framework commands in a ThreadPool ([@zeyla]) [c:5138193] + +## [0.4.7] - 2018-01-05 This release contains a behaviour hotfix for the framework's help-commands. @@ -1558,6 +1567,7 @@ rest::get_guilds(GuildPagination::After(GuildId(777)), 50); Initial commit. +[0.4.8]: https://github.com/zeyla/serenity/compare/v0.4.7...v0.4.8 [0.4.7]: https://github.com/zeyla/serenity/compare/v0.4.6...v0.4.7 [0.4.6]: https://github.com/zeyla/serenity/compare/v0.4.5...v0.4.6 [0.4.5]: https://github.com/zeyla/serenity/compare/v0.4.4...v0.4.5 @@ -1614,6 +1624,8 @@ Initial commit. [@xentec]: https://github.com/xentec [@zeyla]: https://github.com/zeyla +[c:5138193]: https://github.com/zeyla/serenity/commit/5138193c001b8d99f707dffb254b71ce8cefa182 + [c:d0de766]: https://github.com/zeyla/serenity/commit/d0de766123d822ddb5223e66389b4217a90aae2b [c:5286949]: https://github.com/zeyla/serenity/commit/5286949f424e824784344ebb7b7af4e52fb819c3 @@ -8,7 +8,7 @@ license = "ISC" name = "serenity" readme = "README.md" repository = "https://github.com/zeyla/serenity.git" -version = "0.4.7" +version = "0.4.8" [dependencies] bitflags = "^1.0" |