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/), 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. 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 ## [0.6.0] - 2024-10-30
This version takes another step into the direction of the HTTP API, fixes a 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 ## [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.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.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 [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]] [[package]]
name = "librespot" name = "librespot"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"data-encoding", "data-encoding",
"env_logger", "env_logger",
@ -1917,7 +1917,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-audio" name = "librespot-audio"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"aes", "aes",
"bytes", "bytes",
@ -1936,7 +1936,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-connect" name = "librespot-connect"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"form_urlencoded", "form_urlencoded",
"futures-util", "futures-util",
@ -1955,7 +1955,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-core" name = "librespot-core"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"aes", "aes",
"base64 0.22.1", "base64 0.22.1",
@ -2009,7 +2009,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-discovery" name = "librespot-discovery"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"aes", "aes",
"base64 0.22.1", "base64 0.22.1",
@ -2040,7 +2040,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-metadata" name = "librespot-metadata"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bytes", "bytes",
@ -2056,7 +2056,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-oauth" name = "librespot-oauth"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"env_logger", "env_logger",
"log", "log",
@ -2067,7 +2067,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-playback" name = "librespot-playback"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"alsa", "alsa",
"cpal", "cpal",
@ -2099,7 +2099,7 @@ dependencies = [
[[package]] [[package]]
name = "librespot-protocol" name = "librespot-protocol"
version = "0.6.0" version = "0.6.0-dev"
dependencies = [ dependencies = [
"protobuf", "protobuf",
"protobuf-codegen", "protobuf-codegen",

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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