From 786f8832d1aac028801d8f2ff6ec7636033db07d Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Sat, 30 Jul 2022 22:28:12 +0200 Subject: [PATCH] Update version numbers to 0.5.0-dev --- CHANGELOG.md | 13 +++++++++++-- Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- audio/Cargo.toml | 4 ++-- connect/Cargo.toml | 8 ++++---- core/Cargo.toml | 4 ++-- discovery/Cargo.toml | 4 ++-- metadata/Cargo.toml | 6 +++--- playback/Cargo.toml | 8 ++++---- protocol/Cargo.toml | 2 +- 10 files changed, 45 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d84fd31d..d168f84b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 299ee713..0c15d140 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 2c3f2769..ffa3d6f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 18467d36..43d15b87 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-audio" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul Lietar "] 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" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index fd2473fe..1a41b3bb 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-connect" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul Lietar "] 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" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5a7dd88d..cc319c99 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-core" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul Lietar "] 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" diff --git a/discovery/Cargo.toml b/discovery/Cargo.toml index a83c8e8e..c8b0e08f 100644 --- a/discovery/Cargo.toml +++ b/discovery/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-discovery" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul Lietar "] 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" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 7b0a72ff..f57159e3 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-metadata" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul Lietar "] 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" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index 8e9f7019..89237108 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-playback" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Sasha Hilton "] 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" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index da6544a7..00b97bb5 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-protocol" -version = "0.4.2" +version = "0.5.0-dev" authors = ["Paul LiƩtar "] build = "build.rs" description = "The protobuf logic for communicating with Spotify servers"