Skip to content

Commit 987dfa5

Browse files
committed
chore: prepare for v0.7.1 release
1 parent dcd9008 commit 987dfa5

File tree

9 files changed

+35
-43
lines changed

9 files changed

+35
-43
lines changed

CHANGELOG.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) since v0.2.0.
77

8-
## [Unreleased]
9-
10-
### Added
8+
## [v0.7.1] - 2025-08-31
119

1210
### Changed
1311

1412
- [connect] Shuffling was adjusted, so that shuffle and repeat can be used combined
1513

16-
### Deprecated
17-
18-
### Removed
19-
2014
### Fixed
2115

22-
- [connect] Repeat context will not go into autoplay anymore and triggering autoplay while shuffling shouldn't reshuffle anymore
16+
- [connect] Repeat context will not go into autoplay anymore and triggering autoplay while shuffling shouldn't reshuffle anymore
2317
- [connect] Only deletes the connect state on dealer shutdown instead on disconnecting
24-
- [core] Fixed a problem where in `spclient` where an http 411 error was thrown because the header were set wrong
18+
- [core] Fixed a problem where in `spclient` where an HTTP/411 error was thrown because the header was set wrong
2519
- [main] Use the config instead of the type default for values that are not provided by the user
2620

27-
28-
### Security
29-
3021
## [0.7.0] - 2025-08-24
3122

3223
### Changed
@@ -425,7 +416,8 @@ v0.4.x as a stable branch until then.
425416

426417
## [0.1.0] - 2019-11-06
427418

428-
[unreleased]: https://github.com/librespot-org/librespot/compare/v0.7.0...HEAD
419+
[unreleased]: https://github.com/librespot-org/librespot/compare/v0.7.1...HEAD
420+
[0.7.1]: https://github.com/librespot-org/librespot/compare/v0.7.0...v0.7.1
429421
[0.7.0]: https://github.com/librespot-org/librespot/compare/v0.6.0...v0.7.0
430422
[0.6.0]: https://github.com/librespot-org/librespot/compare/v0.5.0...v0.6.0
431423
[0.5.0]: https://github.com/librespot-org/librespot/compare/v0.4.2...v0.5.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
@@ -29,7 +29,7 @@ include = [
2929
]
3030

3131
[workspace.package]
32-
version = "0.7.0"
32+
version = "0.7.1"
3333
rust-version = "1.85"
3434
authors = ["Librespot Org"]
3535
license = "MIT"
@@ -143,14 +143,14 @@ path = "src/main.rs"
143143
doc = false
144144

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

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

audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.0", path = "../core", default-features = false }
21+
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
2222

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

connect/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0", path = "../core", default-features = false }
22-
librespot-playback = { version = "0.7.0", path = "../playback", default-features = false }
23-
librespot-protocol = { version = "0.7.0", path = "../protocol", default-features = false }
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 }
2424

2525
futures-util = "0.3"
2626
log = "0.4"

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ rustls-tls-webpki-roots = [
4040
__rustls = []
4141

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

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

discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.0", path = "../core", default-features = false }
26+
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
2727

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

metadata/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.0", path = "../core", default-features = false }
22-
librespot-protocol = { version = "0.7.0", path = "../protocol", default-features = false }
21+
librespot-core = { version = "0.7.1", path = "../core", default-features = false }
22+
librespot-protocol = { version = "0.7.1", path = "../protocol", default-features = false }
2323

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

playback/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ rustls-tls-webpki-roots = [
4747
]
4848

4949
[dependencies]
50-
librespot-audio = { version = "0.7.0", path = "../audio", default-features = false }
51-
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
52-
librespot-metadata = { version = "0.7.0", path = "../metadata", default-features = false }
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 }
5353

5454
portable-atomic = "1"
5555
futures-util = "0.3"

0 commit comments

Comments
 (0)