Skip to content

Commit d36f9f1

Browse files
Preparations for v0.8.0 (#1632)
Co-authored-by: photovoltex <[email protected]>
1 parent b20316f commit d36f9f1

File tree

11 files changed

+42
-40
lines changed

11 files changed

+42
-40
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0] - 2025-11-10
11+
1012
### Added
1113

1214
- [connect] Add method `transfer` to `Spirc` to automatically transfer the playback to ourselves
@@ -19,7 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1921
- They must be sampled at 44,100 Hz
2022
- They cannot be played from a Connect device using the dedicated 'Local Files' playlist; they must be added to another playlist first
2123
- [playback] `local_file_directories` field added to `PlayerConfig` struct (breaking)
22-
2324

2425
### Changed
2526

@@ -461,7 +462,8 @@ v0.4.x as a stable branch until then.
461462

462463
## [0.1.0] - 2019-11-06
463464

464-
[unreleased]: https://github.com/librespot-org/librespot/compare/v0.7.1...HEAD
465+
[unreleased]: https://github.com/librespot-org/librespot/compare/v0.8.0...HEAD
466+
[0.8.0]: https://github.com/librespot-org/librespot/compare/v0.7.1...v0.8.0
465467
[0.7.1]: https://github.com/librespot-org/librespot/compare/v0.7.0...v0.7.1
466468
[0.7.0]: https://github.com/librespot-org/librespot/compare/v0.6.0...v0.7.0
467469
[0.6.0]: https://github.com/librespot-org/librespot/compare/v0.5.0...v0.6.0

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -142,14 +142,14 @@ path = "src/main.rs"
142142
doc = false
143143

144144
[workspace.dependencies]
145-
librespot-audio = { version = "0.7.1", path = "audio", default-features = false }
146-
librespot-connect = { version = "0.7.1", path = "connect", default-features = false }
147-
librespot-core = { version = "0.7.1", path = "core", default-features = false }
148-
librespot-discovery = { version = "0.7.1", path = "discovery", default-features = false }
149-
librespot-metadata = { version = "0.7.1", path = "metadata", default-features = false }
150-
librespot-oauth = { version = "0.7.1", path = "oauth", default-features = false }
151-
librespot-playback = { version = "0.7.1", path = "playback", default-features = false }
152-
librespot-protocol = { version = "0.7.1", path = "protocol", default-features = false }
145+
librespot-audio = { version = "0.8.0", path = "audio", default-features = false }
146+
librespot-connect = { version = "0.8.0", path = "connect", default-features = false }
147+
librespot-core = { version = "0.8.0", path = "core", default-features = false }
148+
librespot-discovery = { version = "0.8.0", path = "discovery", default-features = false }
149+
librespot-metadata = { version = "0.8.0", path = "metadata", default-features = false }
150+
librespot-oauth = { version = "0.8.0", path = "oauth", default-features = false }
151+
librespot-playback = { version = "0.8.0", path = "playback", default-features = false }
152+
librespot-protocol = { version = "0.8.0", path = "protocol", default-features = false }
153153

154154
[dependencies]
155155
librespot-audio.workspace = true

audio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-audio"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
license.workspace = true
@@ -18,7 +18,7 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
21+
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
2222

2323
aes = "0.8"
2424
bytes = "1"

connect/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-connect"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
license.workspace = true
@@ -18,9 +18,9 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
22-
librespot-playback = { version = "0.7.1", path = "../playback", default-features = false }
23-
librespot-protocol = { version = "0.7.1", path = "../protocol", default-features = false }
21+
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
22+
librespot-playback = { version = "0.8.0", path = "../playback", default-features = false }
23+
librespot-protocol = { version = "0.8.0", path = "../protocol", default-features = false }
2424

2525
futures-util = { version = "0.3", default-features = false, features = ["std"] }
2626
log = "0.4"

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-core"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
license.workspace = true
@@ -40,8 +40,8 @@ rustls-tls-webpki-roots = [
4040
__rustls = []
4141

4242
[dependencies]
43-
librespot-oauth = { version = "0.7.1", path = "../oauth", default-features = false }
44-
librespot-protocol = { version = "0.7.1", path = "../protocol", default-features = false }
43+
librespot-oauth = { version = "0.8.0", path = "../oauth", default-features = false }
44+
librespot-protocol = { version = "0.8.0", path = "../protocol", default-features = false }
4545

4646
aes = "0.8"
4747
base64 = "0.22"

discovery/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-discovery"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
license.workspace = true
@@ -23,7 +23,7 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
2323
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
2424

2525
[dependencies]
26-
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
26+
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
2727

2828
aes = "0.8"
2929
base64 = "0.22"

metadata/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-metadata"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
license.workspace = true
@@ -18,8 +18,8 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
22-
librespot-protocol = { version = "0.7.1", path = "../protocol", default-features = false }
21+
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
22+
librespot-protocol = { version = "0.8.0", path = "../protocol", default-features = false }
2323

2424
async-trait = "0.1"
2525
bytes = "1"

oauth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-oauth"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Nick Steel <[email protected]>"]
66
license.workspace = true

playback/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-playback"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
rust-version.workspace = true
55
authors = ["Sasha Hilton <[email protected]>"]
66
license.workspace = true
@@ -47,9 +47,9 @@ rustls-tls-webpki-roots = [
4747
]
4848

4949
[dependencies]
50-
librespot-audio = { version = "0.7.1", path = "../audio", default-features = false }
51-
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
52-
librespot-metadata = { version = "0.7.1", path = "../metadata", default-features = false }
50+
librespot-audio = { version = "0.8.0", path = "../audio", default-features = false }
51+
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
52+
librespot-metadata = { version = "0.8.0", path = "../metadata", default-features = false }
5353

5454
futures-util = { version = "0.3", default-features = false, features = ["std"] }
5555
log = "0.4"

0 commit comments

Comments
 (0)