Skip to content

Commit

Permalink
chore: bump version to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baptiste0928 committed Nov 16, 2022
1 parent d1a7af4 commit 0615101
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion twilight-interactions-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions twilight-interactions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion twilight-interactions/tests/subcommand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0615101

Please sign in to comment.