Skip to content

Commit

Permalink
chore: bump to v0.6.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickvd committed Oct 31, 2024
1 parent 383a6f6 commit e2eca65
Show file tree
Hide file tree
Showing 11 changed files with 50 additions and 39 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -103,4 +103,4 @@ assets = [
]

[workspace.package]
rust-version = "1.74"
rust-version = "1.75"
4 changes: 2 additions & 2 deletions audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
description = "The audio fetching logic for librespot"
Expand All @@ -10,7 +10,7 @@ edition = "2021"

[dependencies.librespot-core]
path = "../core"
version = "0.6.0"
version = "0.6.0-dev"

[dependencies]
aes = "0.8"
Expand Down
8 changes: 4 additions & 4 deletions connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
description = "The discovery and Spotify Connect logic for librespot"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
build = "build.rs"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-discovery"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
description = "The discovery logic for librespot"
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
description = "The metadata logic for librespot"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion oauth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-oauth"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Nick Steel <[email protected]>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
Expand Down
8 changes: 4 additions & 4 deletions playback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.6.0"
version = "0.6.0-dev"
rust-version.workspace = true
authors = ["Sasha Hilton <[email protected]>"]
description = "The audio playback logic for librespot"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
build = "build.rs"
Expand Down

0 comments on commit e2eca65

Please sign in to comment.