diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a1bb9d..57faf4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0] - 2025-01-17 +### Changed +- Updated to `twilight-model` 0.16 (@randomairborne) + ## [0.16.0-rc.1] - 2024-05-16 ### Added - A basic example bot implementation has been added in the `examples` directory diff --git a/README.md b/README.md index 36390de..500fd3b 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ To install `twilight-interactions`, add the following to your `Cargo.toml`: ```toml [dependencies] -twilight-interactions = "0.15" +twilight-interactions = "0.16" ``` The crate's major version follows the version of the official twilight crates. -The current MSRV is `1.67`. +The current MSRV is `1.79`. ## Documentation diff --git a/twilight-interactions/Cargo.toml b/twilight-interactions/Cargo.toml index d911976..3415b11 100644 --- a/twilight-interactions/Cargo.toml +++ b/twilight-interactions/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twilight-interactions" -version = "0.16.0-rc.1" +version = "0.16.0" description = "Macros and utilities to make Discord Interactions easy to use with Twilight." categories = ["parsing", "config", "asynchronous"] keywords = ["twilight", "discord", "slash-command"] @@ -19,7 +19,7 @@ default = ["derive"] derive = ["twilight-interactions-derive"] [dependencies] -twilight-model = "0.16.0" +twilight-model = "0.16" twilight-interactions-derive = { version = "=0.16.0", path = "../twilight-interactions-derive", optional = true } [package.metadata.docs.rs]