diff --git a/CHANGELOG.md b/CHANGELOG.md index aaedad45..4ddc8a70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +[Unreleased]: https://github.com/udoprog/setmod/compare/0.2.2...HEAD + +## [0.2.2] + ### Added -- `[player] type = "connect"` to play music through Spotify's Connect API ([#17]). +- Player now plays music through Spotify's blessed Connect API ([#17]). - `!swearjar` command that can be enabled using as a module through `[[modules]]`. - `!countdown` command that can be enabled using as a module through `[[modules]]`. ### Changed -- Deprecated the use of the `native` player in favor of `connect` since it's a potential TOS violation. +- Remove dependency on bundled `.dll` files. +- Deprecated the use of the `native` player in favor of `connect` since it's a potential TOS violation ([#17]). - Improved administration UI: - Support for selecting Audio Device (does not persist across reboots) ([#20]). - Informing you more clearly when you need to authenticate. - Provide hint on how to configure persistent device. -[Unreleased]: https://github.com/udoprog/setmod/compare/0.2.1...HEAD [#17]: https://github.com/udoprog/setmod/issues/17 [#20]: https://github.com/udoprog/setmod/issues/20 +[0.2.2]: https://github.com/udoprog/setmod/compare/0.2.1...0.2.2 + ## [0.2.1] ### Added diff --git a/Cargo.lock b/Cargo.lock index 5571d313..2efd0ecc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "setmod-bot" -version = "0.2.1" +version = "0.2.2" dependencies = [ "Inflector 0.11.4 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1759,7 +1759,7 @@ dependencies = [ "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)", - "setmod-notifier 0.2.1", + "setmod-notifier 0.2.2", "tokio 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-bus 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1771,7 +1771,7 @@ dependencies = [ [[package]] name = "setmod-notifier" -version = "0.2.1" +version = "0.2.2" dependencies = [ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/bot/Cargo.toml b/bot/Cargo.toml index e8113896..96518c2a 100644 --- a/bot/Cargo.toml +++ b/bot/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "setmod-bot" -version = "0.2.1" +version = "0.2.2" authors = ["John-John Tedro "] edition = "2018" license = "MIT/Apache-2.0" [dependencies] -setmod-notifier = {version = "0.2.1", path = "../notifier"} +setmod-notifier = {version = "0.2.2", path = "../notifier"} chrono = {version = "0.4.6", features = ["serde"]} clap = "2.32" diesel = {version = "1.4.1", features = ["sqlite", "r2d2", "chrono"]} diff --git a/notifier/Cargo.toml b/notifier/Cargo.toml index 66cd86fe..8f93e08d 100644 --- a/notifier/Cargo.toml +++ b/notifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "setmod-notifier" -version = "0.2.1" +version = "0.2.2" authors = ["John-John Tedro "] edition = "2018" license = "MIT/Apache-2.0"