Skip to content

Commit e997895

Browse files
committed
chore: bump version to 0.11.0
1 parent 207da0f commit e997895

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Minimum supported Rust version
88
runs-on: ubuntu-latest
99
env:
10-
minrust: 1.57
10+
minrust: "1.60"
1111

1212
steps:
1313
- name: Checkout sources

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.11.0] - 2022-05-16
10+
### Added
11+
- Support command localization with `name_localizations` and `desc_localizations` attributes.
12+
- Command permissions v2 with `default_permissions` and `dm_permission` attributes.
13+
14+
### Changed
15+
- Upgraded to `twilight-model` 0.11.0
16+
- MSRV updated to 1.60
17+
918
## [0.10.1] - 2022-03-15
1019
### Added
1120
- Allow `CommandModel` and `CreateCommand` types to have generics (@MaxOhn)
@@ -77,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7786
### Added
7887
- Initial release of `twilight-interactions` and `twilight-interactions-derive` crates.
7988

80-
[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.10.1...main
89+
[Unreleased]: https://github.com/baptiste0928/twilight-interactions/compare/v0.11.0...main
90+
[0.11.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.10.1...v0.11.0
8191
[0.10.1]: https://github.com/baptiste0928/twilight-interactions/compare/v0.10.0...v0.10.1
8292
[0.10.0]: https://github.com/baptiste0928/twilight-interactions/compare/v0.9.1...v0.10.0
8393
[0.9.1]: https://github.com/baptiste0928/twilight-interactions/compare/v0.9.0...v0.9.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ To install `twilight-interactions`, add the following to your `Cargo.toml`:
3131

3232
```toml
3333
[dependencies]
34-
twilight-interactions = "0.10.0"
34+
twilight-interactions = "0.11.0"
3535
```
3636

3737
The crate major version follow the version of the official twilight crates.
38-
The MSRV is two version behind the latest stable version (current is `1.57`)
38+
The MSRV is two version behind the latest stable version (current is `1.60`)
3939
and can be bumped in minor updates.
4040

4141
## Documentation

twilight-interactions-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "twilight-interactions-derive"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
description = "Macros and utilities to make Discord Interactions easy to use with Twilight."
55
categories = ["parsing", "config", "asynchronous"]
66
keywords = ["twilight", "discord", "slash-command"]

twilight-interactions/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "twilight-interactions"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
description = "Macros and utilities to make Discord Interactions easy to use with Twilight."
55
categories = ["parsing", "config", "asynchronous"]
66
keywords = ["twilight", "discord", "slash-command"]
@@ -20,7 +20,7 @@ derive = ["twilight-interactions-derive"]
2020

2121
[dependencies]
2222
twilight-model = "0.11"
23-
twilight-interactions-derive = { version = "=0.10.1", path = "../twilight-interactions-derive", optional = true }
23+
twilight-interactions-derive = { version = "=0.11.0", path = "../twilight-interactions-derive", optional = true }
2424

2525
[dev-dependencies]
2626
maplit = "1"

0 commit comments

Comments
 (0)