From 061510112e50f28653ec33ad4d94deb6bf6c8676 Mon Sep 17 00:00:00 2001 From: baptiste0928 <22115890+baptiste0928@users.noreply.github.com> Date: Wed, 16 Nov 2022 10:01:51 +0100 Subject: [PATCH] chore: bump version to 0.14.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- twilight-interactions-derive/Cargo.toml | 2 +- twilight-interactions/Cargo.toml | 4 ++-- twilight-interactions/tests/subcommand.rs | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d68692..e269c4c 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.14.0] - 2022-11-16 ### Changed - Upgraded to `twilight-model` 0.14. - MSRV bumped to 1.64. @@ -105,7 +107,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.13.0...main +[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.14.0...main +[0.14.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.10.1...v0.11.0 diff --git a/README.md b/README.md index 5fac698..9487339 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ To install `twilight-interactions`, add the following to your `Cargo.toml`: ```toml [dependencies] -twilight-interactions = "0.13" +twilight-interactions = "0.14" ``` The crate's major version follows the version of the official twilight crates. diff --git a/twilight-interactions-derive/Cargo.toml b/twilight-interactions-derive/Cargo.toml index 5decf0f..d8010e6 100644 --- a/twilight-interactions-derive/Cargo.toml +++ b/twilight-interactions-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twilight-interactions-derive" -version = "0.13.0" +version = "0.14.0" 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 9361586..5c1cde6 100644 --- a/twilight-interactions/Cargo.toml +++ b/twilight-interactions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twilight-interactions" -version = "0.13.0" +version = "0.14.0" 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.14" -twilight-interactions-derive = { version = "=0.13.0", path = "../twilight-interactions-derive", optional = true } +twilight-interactions-derive = { version = "=0.14.0", path = "../twilight-interactions-derive", optional = true } [package.metadata.docs.rs] all-features = true diff --git a/twilight-interactions/tests/subcommand.rs b/twilight-interactions/tests/subcommand.rs index 0076c98..cd4b4ac 100644 --- a/twilight-interactions/tests/subcommand.rs +++ b/twilight-interactions/tests/subcommand.rs @@ -190,7 +190,7 @@ fn test_create_subcommand() { min_value: None, name: "one".into(), name_localizations: None, - options: Some(command_options.clone()), + options: Some(command_options), required: Some(true), }, CommandOption {