chore: bump to v0.6.0-dev

This commit is contained in:
Roderick van Domburg 2024-10-31 23:14:13 +01:00
parent 383a6f6969
commit e2eca65d11
No known key found for this signature in database
GPG key ID: FE2585E713F9F30A
11 changed files with 50 additions and 39 deletions

View file

@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) since v0.2.0.
## [Unreleased] - YYYY-MM-DD
### Changed
### Added
### Fixed
### Removed
## [0.6.0] - 2024-10-30
This version takes another step into the direction of the HTTP API, fixes a
@ -322,6 +332,7 @@ v0.4.x as a stable branch until then.
## [0.1.0] - 2019-11-06
[unreleased]: https://github.com/librespot-org/librespot/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/librespot-org/librespot/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/librespot-org/librespot/compare/v0.4.2...v0.5.0
[0.4.2]: https://github.com/librespot-org/librespot/compare/v0.4.1...v0.4.2

18
Cargo.lock generated
View file

@ -1893,7 +1893,7 @@ dependencies = [
[[package]]
name = "librespot"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"data-encoding",
"env_logger",
@ -1917,7 +1917,7 @@ dependencies = [
[[package]]
name = "librespot-audio"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"aes",
"bytes",
@ -1936,7 +1936,7 @@ dependencies = [
[[package]]
name = "librespot-connect"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"form_urlencoded",
"futures-util",
@ -1955,7 +1955,7 @@ dependencies = [
[[package]]
name = "librespot-core"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"aes",
"base64 0.22.1",
@ -2009,7 +2009,7 @@ dependencies = [
[[package]]
name = "librespot-discovery"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"aes",
"base64 0.22.1",
@ -2040,7 +2040,7 @@ dependencies = [
[[package]]
name = "librespot-metadata"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"async-trait",
"bytes",
@ -2056,7 +2056,7 @@ dependencies = [
[[package]]
name = "librespot-oauth"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"env_logger",
"log",
@ -2067,7 +2067,7 @@ dependencies = [
[[package]]
name = "librespot-playback"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"alsa",
"cpal",
@ -2099,7 +2099,7 @@ dependencies = [
[[package]]
name = "librespot-protocol"
version = "0.6.0"
version = "0.6.0-dev"
dependencies = [
"protobuf",
"protobuf-codegen",

View file

@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.6.0"
version = "0.6.0-dev"
rust-version = "1.75"
authors = ["Librespot Org"]
license = "MIT"
@ -23,36 +23,36 @@ doc = false
[dependencies.librespot-audio]
path = "audio"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-connect]
path = "connect"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-core]
path = "core"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-discovery]
path = "discovery"
version = "0.6.0"
version = "0.6.0-dev"
default-features = false
[dependencies.librespot-metadata]
path = "metadata"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-playback]
path = "playback"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-oauth]
path = "oauth"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies]
data-encoding = "2.5"
@ -103,4 +103,4 @@ assets = [
]
[workspace.package]
rust-version = "1.74"
rust-version = "1.75"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
@ -10,7 +10,7 @@ edition = "2021"
[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies]
aes = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
@ -22,12 +22,12 @@ tokio-stream = "0.1"
[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-playback]
path = "../playback"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.6.0"
version = "0.6.0-dev"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
@ -11,11 +11,11 @@ edition = "2021"
[dependencies.librespot-oauth]
path = "../oauth"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies]
aes = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-discovery"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
@ -34,7 +34,7 @@ zbus = { version = "4", default-features = false, features = ["tokio"], optional
[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"
[dev-dependencies]
futures = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
@ -20,8 +20,8 @@ serde_json = "1.0"
[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.6.0"
version = "0.6.0-dev"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-oauth"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Nick Steel <nick@nsteel.co.uk>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
@ -10,15 +10,15 @@ edition = "2021"
[dependencies.librespot-audio]
path = "../audio"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.6.0"
version = "0.6.0-dev"
[dependencies]
futures-util = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-protocol"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"