diff --git a/CHANGELOG.md b/CHANGELOG.md index 51afdd2..49161f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.15.1] - 2023-03-26 ### Fixed - Attribute parameters names are now correctly validated. (#21) @@ -136,7 +138,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release of `twilight-interactions` and `twilight-interactions-derive` crates. -[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.15.0...main +[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.15.1...main +[0.15.1]: https://github.com/baptiste0928/twilight-interactions/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.14.4...v0.15.0 [0.14.4]: https://github.com/baptiste0928/twilight-interactions/compare/v0.14.3...v0.14.4 [0.14.3]: https://github.com/baptiste0928/twilight-interactions/compare/v0.14.2...v0.14.3 diff --git a/twilight-interactions-derive/Cargo.toml b/twilight-interactions-derive/Cargo.toml index 5412287..58f2d7b 100644 --- a/twilight-interactions-derive/Cargo.toml +++ b/twilight-interactions-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twilight-interactions-derive" -version = "0.15.0" +version = "0.15.1" description = "Macros and utilities to make Discord Interactions easy to use with Twilight." categories = ["parsing", "config", "asynchronous"] keywords = ["twilight", "discord", "slash-command"] diff --git a/twilight-interactions/Cargo.toml b/twilight-interactions/Cargo.toml index e280b2a..4b689b3 100644 --- a/twilight-interactions/Cargo.toml +++ b/twilight-interactions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twilight-interactions" -version = "0.15.0" +version = "0.15.1" description = "Macros and utilities to make Discord Interactions easy to use with Twilight." categories = ["parsing", "config", "asynchronous"] keywords = ["twilight", "discord", "slash-command"] @@ -20,7 +20,7 @@ derive = ["twilight-interactions-derive"] [dependencies] twilight-model = "0.15.0" -twilight-interactions-derive = { version = "=0.15.0", path = "../twilight-interactions-derive", optional = true } +twilight-interactions-derive = { version = "=0.15.1", path = "../twilight-interactions-derive", optional = true } [package.metadata.docs.rs] all-features = true