diff --git a/lavalink/CHANGELOG.md b/lavalink/CHANGELOG.md index 077a77e37a3..ade20061541 100644 --- a/lavalink/CHANGELOG.md +++ b/lavalink/CHANGELOG.md @@ -2,6 +2,29 @@ Changelog for `twilight-lavalink`. +## [0.9.0] - 2022-01-22 + +### Changes + +All types and method signatures have been updated to use the new `Id` syntax +([#1260] - [@zeylahellyer]). + +Support lavalink 3.4 ([#1292] - [@james7132]). `PlayerUpdateState` now contains +a `connected` field, and its `position` field is now `Option`al. + +The `rustls` feature has been removed ([#1314] - [@Gelbpunkt]). Users must +manually select one of `rustls-native-roots` or `rustls-webpki-roots`. + +The MSRV has been updated to 1.57 ([#1402] - [@zeylahellyer]). + +The Rust edition has been updated to 2021 ([#1412] - [@vilgotf]). + +[#1260]: https://github.com/twilight-rs/twilight/pull/1260 +[#1292]: https://github.com/twilight-rs/twilight/pull/1292 +[#1314]: https://github.com/twilight-rs/twilight/pull/1314 +[#1402]: https://github.com/twilight-rs/twilight/pull/1402 +[#1412]: https://github.com/twilight-rs/twilight/pull/1412 + ## [0.8.3] - 2022-01-11 ### Fixes @@ -292,6 +315,7 @@ Initial release. [#548]: https://github.com/twilight-rs/twilight/pull/548 [#518]: https://github.com/twilight-rs/twilight/pull/518 +[0.9.0]: https://github.com/twilight-rs/twilight/releases/tag/lavalink-0.9.0 [0.8.3]: https://github.com/twilight-rs/twilight/releases/tag/lavalink-0.8.3 [0.8.2]: https://github.com/twilight-rs/twilight/releases/tag/lavalink-0.8.2 [0.8.1]: https://github.com/twilight-rs/twilight/releases/tag/lavalink-0.8.1 diff --git a/lavalink/Cargo.toml b/lavalink/Cargo.toml index 8b9aa0a5b47..d8c584389c5 100644 --- a/lavalink/Cargo.toml +++ b/lavalink/Cargo.toml @@ -13,7 +13,7 @@ publish = false readme = "README.md" rust-version = "1.57" repository = "https://github.com/twilight-rs/twilight.git" -version = "0.8.3" +version = "0.9.0" [dependencies] dashmap = { default-features = false, version = "4" }