Skip to content

Commit

Permalink
chore: bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baptiste0928 committed Jan 24, 2022
1 parent 4b921a4 commit 613aad2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0] - 2022-01-24
### Changed
- Updated to `twilight-model` 0.9.
- Updated MSRV to 1.57 and to Edition 2021.

## [0.8.1] - 2021-12-21
### Added
- A `value` method is generated when deriving `CommandOption` for command option choices.
Expand Down Expand Up @@ -55,7 +60,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.8.1...main
[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.9.0...main
[0.9.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.8.1...v0.9.0
[0.8.1]: https://github.com/baptiste0928/twilight-interactions/compare/v0.8.0...v0.8.1
[0.8.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.7.2...v0.8.0
[0.7.2]: https://github.com/baptiste0928/twilight-interactions/compare/v0.7.1...v0.7.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ To install `twilight-interactions`, add the following to your `Cargo.toml`:

```toml
[dependencies]
twilight-interactions = "0.8"
twilight-interactions = "0.9"
```

The crate major version follow the version of the official twilight crates.
The MSRV is two version behind the latest stable version (current is `1.55`)
The MSRV is two version behind the latest stable version (current is `1.57`)
and can be bumped in minor updates.

## Documentation
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.8.1"
version = "0.9.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.8.1"
version = "0.9.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.9"
twilight-interactions-derive = { version = "=0.8.1", path = "../twilight-interactions-derive", optional = true }
twilight-interactions-derive = { version = "=0.9.0", path = "../twilight-interactions-derive", optional = true }

[dev-dependencies]
maplit = "1"
Expand Down

0 comments on commit 613aad2

Please sign in to comment.