From 8bffdf1288403060ed3c7ddc95cae1b328d30b29 Mon Sep 17 00:00:00 2001 From: Cassandra McCarthy Date: Fri, 23 Jul 2021 22:52:11 -0500 Subject: [PATCH] release(command-parser): bump to 0.5.1 Changes `#![deny(unsafe_code)]` has been added, ensuring no unsafe code exists in the crate ([#1042] - [@zeylahellyer]). [#1042]: https://github.com/twilight-rs/twilight/pull/1042 [@zeylahellyer]: https://github.com/zeylahellyer --- command-parser/CHANGELOG.md | 11 +++++++++++ command-parser/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/command-parser/CHANGELOG.md b/command-parser/CHANGELOG.md index cee3782e6ed..61b92fbb9d6 100644 --- a/command-parser/CHANGELOG.md +++ b/command-parser/CHANGELOG.md @@ -2,6 +2,15 @@ Changelog for `twilight-command-parser`. +## [0.5.1] - 2021-07-23 + +### Changes + +`#![deny(unsafe_code)]` has been added, ensuring no unsafe code exists in the +crate ([#1042] - [@zeylahellyer]). + +[#1042]: https://github.com/twilight-rs/twilight/pull/1042 + ## [0.5.0] - 2021-06-13 This major version bump of the Command Parser crate is done to match all of the @@ -126,6 +135,7 @@ Initial release. [@nickelc]: https://github.com/nickelc [@vilgotf]: https://github.com/vilgotf [@vivian]: https://github.com/vivian +[@zeylahellyer]: https://github.com/zeylahellyer [#585]: https://github.com/twilight-rs/twilight/pull/585 [#584]: https://github.com/twilight-rs/twilight/pull/584 @@ -133,6 +143,7 @@ Initial release. [#515]: https://github.com/twilight-rs/twilight/pull/515 [#511]: https://github.com/twilight-rs/twilight/pull/511 +[0.5.1]: https://github.com/twilight-rs/twilight/releases/tag/command-parser-0.5.1 [0.5.0]: https://github.com/twilight-rs/twilight/releases/tag/command-parser-0.5.0 [0.4.2]: https://github.com/twilight-rs/twilight/releases/tag/command-parser-0.4.2 [0.4.1]: https://github.com/twilight-rs/twilight/releases/tag/command-parser-0.4.1 diff --git a/command-parser/Cargo.toml b/command-parser/Cargo.toml index 1aea6fe7f07..cad889f4cc6 100644 --- a/command-parser/Cargo.toml +++ b/command-parser/Cargo.toml @@ -12,7 +12,7 @@ name = "twilight-command-parser" publish = false readme = "README.md" repository = "https://github.com/twilight-rs/twilight.git" -version = "0.5.0" +version = "0.5.1" [dependencies] unicase = { default-features = false, version = "2" }