From 89ca6d34f11dcf08ee0456b74e38ad83064f12cd Mon Sep 17 00:00:00 2001 From: Ramsay Leung Date: Mon, 3 Jun 2024 22:13:57 -0700 Subject: [PATCH] Bump the version to 0.13.2 --- CHANGELOG.md | 3 +++ Cargo.toml | 8 ++++---- rspotify-http/Cargo.toml | 4 ++-- rspotify-macros/Cargo.toml | 2 +- rspotify-model/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94c85270..8beb84ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.13.2 (2024.06.03) +- ([#480](https://github.com/ramsayleung/rspotify/pull/480)) Fix deserialize empty images from null. + ## 0.13.1 (2024.04.01) **Bugfixes** diff --git a/Cargo.toml b/Cargo.toml index 94e4f04c..5a4b4adf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Mario Ortiz Manero " ] name = "rspotify" -version = "0.13.1" +version = "0.13.2" license = "MIT" readme = "README.md" description = "Spotify API wrapper" @@ -26,9 +26,9 @@ exclude = [ ] [dependencies] -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 } +rspotify-macros = { path = "rspotify-macros", version = "0.13.2" } +rspotify-model = { path = "rspotify-model", version = "0.13.2" } +rspotify-http = { path = "rspotify-http", version = "0.13.2", 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 8bc526a3..a1fc8c22 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.1" +version = "0.13.2" 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.1" } +rspotify-model = { path = "../rspotify-model", version = "0.13.2" } [features] default = ["client-reqwest", "reqwest-default-tls"] diff --git a/rspotify-macros/Cargo.toml b/rspotify-macros/Cargo.toml index 4a36ba0a..baf37e8f 100644 --- a/rspotify-macros/Cargo.toml +++ b/rspotify-macros/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Ramsay Leung ", "Mario Ortiz Manero " ] -version = "0.13.1" +version = "0.13.2" 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 150c6243..9306aef5 100644 --- a/rspotify-model/Cargo.toml +++ b/rspotify-model/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rspotify-model" -version = "0.13.1" +version = "0.13.2" authors = [ "Ramsay Leung ", "Mario Ortiz Manero "