diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 135f09e9..5c14771d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,5 +1,5 @@ on: - create: + push: tags: - 'v*' diff --git a/CHANGELOG.md b/CHANGELOG.md index 2420897f..94c85270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.13.1 (Unreleased) +## 0.13.1 (2024.04.01) **Bugfixes** - ([#471](https://github.com/ramsayleung/rspotify/pull/471)) Fix `ureq-native-tls` feature to actually use native-tls @@ -12,7 +12,7 @@ - ([#440](https://github.com/ramsayleung/rspotify/issues/440)) Add Smartwatch device type, fix for json parse error: unknown variant Smartwatch. - ([#447](https://github.com/ramsayleung/rspotify/pull/447)) Replace the deprecated `dotenv` crate with `dotenvy` -## 0.13.0 (2023.08.26) +## 0.12.0 (2023.08.26) **New features** - ([#390](https://github.com/ramsayleung/rspotify/pull/390)) The `scopes!` macro supports to split the scope by whitespace. - ([#418](https://github.com/ramsayleung/rspotify/pull/418)) Add a user-settable callback function whenever token is updated. diff --git a/Cargo.toml b/Cargo.toml index 2fc9e751..df6177ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Mario Ortiz Manero " ] name = "rspotify" -version = "0.13.0" +version = "0.13.1" license = "MIT" readme = "README.md" description = "Spotify API wrapper" @@ -26,9 +26,9 @@ exclude = [ ] [dependencies] -rspotify-macros = { path = "rspotify-macros", version = "0.13.0" } -rspotify-model = { path = "rspotify-model", version = "0.13.0" } -rspotify-http = { path = "rspotify-http", version = "0.13.0", default-features = false } +rspotify-macros = { path = "rspotify-macros", version = "0.13.1" } +rspotify-model = { path = "rspotify-model", version = "0.13.1" } +rspotify-http = { path = "rspotify-http", version = "0.13.1", default-features = false } async-stream = { version = "0.3.2", optional = true } async-trait = { version = "0.1.51", optional = true } diff --git a/rspotify-http/Cargo.toml b/rspotify-http/Cargo.toml index 22ffa4eb..8bc526a3 100644 --- a/rspotify-http/Cargo.toml +++ b/rspotify-http/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Mario Ortiz Manero " ] name = "rspotify-http" -version = "0.13.0" +version = "0.13.1" license = "MIT" description = "HTTP compatibility layer for RSpotify" homepage = "https://github.com/ramsayleung/rspotify" @@ -30,7 +30,7 @@ native-tls = { version = "0.2.11", optional = true } [dev-dependencies] tokio = { version = "1.11.0", features = ["macros", "rt-multi-thread"] } -rspotify-model = { path = "../rspotify-model", version = "0.13.0" } +rspotify-model = { path = "../rspotify-model", version = "0.13.1" } [features] default = ["client-reqwest", "reqwest-default-tls"] diff --git a/rspotify-macros/Cargo.toml b/rspotify-macros/Cargo.toml index 77db69b7..4a36ba0a 100644 --- a/rspotify-macros/Cargo.toml +++ b/rspotify-macros/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Ramsay Leung ", "Mario Ortiz Manero " ] -version = "0.13.0" +version = "0.13.1" license = "MIT" description = "Macros for RSpotify" homepage = "https://github.com/ramsayleung/rspotify" diff --git a/rspotify-model/Cargo.toml b/rspotify-model/Cargo.toml index 00bdaff5..150c6243 100644 --- a/rspotify-model/Cargo.toml +++ b/rspotify-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rspotify-model" -version = "0.13.0" +version = "0.13.1" authors = [ "Ramsay Leung ", "Mario Ortiz Manero "