Update version numbers to 0.5.0-dev

This commit is contained in:
Roderick van Domburg 2022-07-30 22:28:12 +02:00
parent 37794c5b78
commit 786f8832d1
No known key found for this signature in database
GPG key ID: 87F5FDE8A56219F4
10 changed files with 45 additions and 36 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.
## [0.5.0-dev] - YYYY-MM-DD
### Changed
### Added
### Fixed
### Removed
## [0.4.2] - 2022-07-29
### Changed
@ -19,8 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [main] fix `--opt=value` line argument logging
- [playback] `alsamixer`: make `--volume-ctrl fixed` work as expected when combined with `--mixer alsa`
## Removed
## [0.4.1] - 2022-05-23
### Changed
@ -141,6 +149,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2019-11-06
[0.5.0-dev]: https://github.com/librespot-org/librespot/compare/v0.4.1..HEAD
[0.4.2]: https://github.com/librespot-org/librespot/compare/v0.4.1..v0.4.2
[0.4.1]: https://github.com/librespot-org/librespot/compare/v0.4.0..v0.4.1
[0.4.0]: https://github.com/librespot-org/librespot/compare/v0.3.1..v0.4.0

16
Cargo.lock generated
View file

@ -1332,7 +1332,7 @@ dependencies = [
[[package]]
name = "librespot"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"env_logger",
"futures-util",
@ -1355,7 +1355,7 @@ dependencies = [
[[package]]
name = "librespot-audio"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"aes",
"byteorder",
@ -1374,7 +1374,7 @@ dependencies = [
[[package]]
name = "librespot-connect"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"form_urlencoded",
"futures-util",
@ -1393,7 +1393,7 @@ dependencies = [
[[package]]
name = "librespot-core"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"aes",
"base64",
@ -1442,7 +1442,7 @@ dependencies = [
[[package]]
name = "librespot-discovery"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"aes",
"base64",
@ -1468,7 +1468,7 @@ dependencies = [
[[package]]
name = "librespot-metadata"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"async-trait",
"byteorder",
@ -1483,7 +1483,7 @@ dependencies = [
[[package]]
name = "librespot-playback"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"alsa",
"byteorder",
@ -1516,7 +1516,7 @@ dependencies = [
[[package]]
name = "librespot-protocol"
version = "0.4.2"
version = "0.5.0-dev"
dependencies = [
"glob",
"protobuf",

View file

@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Librespot Org"]
license = "MIT"
description = "An open source client library for Spotify, with support for Spotify Connect"
@ -22,31 +22,31 @@ doc = false
[dependencies.librespot-audio]
path = "audio"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-connect]
path = "connect"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-core]
path = "core"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-discovery]
path = "discovery"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-metadata]
path = "metadata"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-playback]
path = "playback"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies]
env_logger = { version = "0.9", default-features = false, features = ["termcolor", "humantime", "atty"] }

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
license = "MIT"
@ -9,7 +9,7 @@ edition = "2018"
[dependencies.librespot-core]
path = "../core"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies]
aes = "0.8"

View file

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

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description = "The core functionality provided by librespot"
@ -10,7 +10,7 @@ edition = "2018"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies]
aes = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-discovery"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
license = "MIT"
@ -28,7 +28,7 @@ tokio = { version = "1", features = ["parking_lot", "sync", "rt"] }
[dependencies.librespot-core]
path = "../core"
version = "0.4.2"
version = "0.5.0-dev"
[dev-dependencies]
futures = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
@ -18,8 +18,8 @@ uuid = { version = "1", default-features = false }
[dependencies.librespot-core]
path = "../core"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.2"
version = "0.5.0-dev"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
license = "MIT"
@ -9,13 +9,13 @@ edition = "2018"
[dependencies.librespot-audio]
path = "../audio"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-core]
path = "../core"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.4.2"
version = "0.5.0-dev"
[dependencies]
byteorder = "1"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-protocol"
version = "0.4.2"
version = "0.5.0-dev"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
description = "The protobuf logic for communicating with Spotify servers"