diff --git a/CHANGELOG.md b/CHANGELOG.md index 328435e7081..65d788b3c16 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 diff --git a/Cargo.toml b/Cargo.toml index d32c7ac06d1..0eeb071a1e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"