Skip to content

Commit 4af3a61

Browse files
committed
upgrade to v0.16.0
1 parent e5ad4bb commit 4af3a61

6 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.16.0 (Unreleased)
1+
## 0.16.0 (2026.03.22)
22

33
**Spotify Web API changes**
44
- ([#556](https://github.com/ramsayleung/rspotify/pull/556)) Deprecate removed endpoints#556

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"Mario Ortiz Manero <marioortizmanero@gmail.com>"
55
]
66
name = "rspotify"
7-
version = "0.15.3"
7+
version = "0.16.0"
88
license = "MIT"
99
readme = "README.md"
1010
description = "Spotify API wrapper"
@@ -26,9 +26,9 @@ exclude = [
2626
]
2727

2828
[dependencies]
29-
rspotify-macros = { path = "rspotify-macros", version = "0.15.3" }
30-
rspotify-model = { path = "rspotify-model", version = "0.15.3" }
31-
rspotify-http = { path = "rspotify-http", version = "0.15.3", default-features = false }
29+
rspotify-macros = { path = "rspotify-macros", version = "0.16.0" }
30+
rspotify-model = { path = "rspotify-model", version = "0.16.0" }
31+
rspotify-http = { path = "rspotify-http", version = "0.16.0", default-features = false }
3232

3333
async-stream = { version = "0.3.2", optional = true }
3434
async-trait = { version = "0.1.51", optional = true }

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# RSpotify
77
![](./doc/images/rspotify_logo_with_name.png)
88

9+
RSpotify enters maintenance mode, see [this](https://github.com/ramsayleung/rspotify/issues/550#issuecomment-4061827904) for detail.
10+
911
RSpotify is a wrapper for the [Spotify Web API](https://developer.spotify.com/documentation/web-api/), inspired by [spotipy](https://github.com/plamere/spotipy). It includes support for all the [authorization flows](https://developer.spotify.com/documentation/general/guides/authorization/), and helper functions for [all endpoints](https://developer.spotify.com/documentation/web-api/reference/).
1012

1113
To learn how to use RSpotify, please refer to the [documentation](https://docs.rs/crate/rspotify/). There are some [examples that may be useful](./examples) as well.

rspotify-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"Mario Ortiz Manero <marioortizmanero@gmail.com>"
55
]
66
name = "rspotify-http"
7-
version = "0.15.3"
7+
version = "0.16.0"
88
license = "MIT"
99
description = "HTTP compatibility layer for RSpotify"
1010
homepage = "https://github.com/ramsayleung/rspotify"
@@ -32,7 +32,7 @@ native-tls = { version = "0.2.11", optional = true }
3232
[dev-dependencies]
3333
http = "1.3.1"
3434
tokio = { version = "1.11.0", features = ["macros", "rt-multi-thread"] }
35-
rspotify-model = { path = "../rspotify-model", version = "0.15.3" }
35+
rspotify-model = { path = "../rspotify-model", version = "0.16.0" }
3636
wiremock = "0.6.3"
3737

3838
[features]

rspotify-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [
44
"Ramsay Leung <ramsayleung@gmail.com>",
55
"Mario Ortiz Manero <marioortizmanero@gmail.com>"
66
]
7-
version = "0.15.3"
7+
version = "0.16.0"
88
license = "MIT"
99
description = "Macros for RSpotify"
1010
homepage = "https://github.com/ramsayleung/rspotify"

rspotify-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rspotify-model"
3-
version = "0.15.3"
3+
version = "0.16.0"
44
authors = [
55
"Ramsay Leung <ramsayleung@gmail.com>",
66
"Mario Ortiz Manero <marioortizmanero@gmail.com>"

0 commit comments

Comments
 (0)