From b7c3609c7bd73936e0b85e95593de452c0f42a1c Mon Sep 17 00:00:00 2001 From: Sasha Hilton Date: Mon, 22 Feb 2021 00:37:28 +0000 Subject: [PATCH 1/2] Update version numbers to 0.1.6 --- Cargo.toml | 14 +++++++------- audio/Cargo.toml | 4 ++-- connect/Cargo.toml | 8 ++++---- core/Cargo.toml | 4 ++-- metadata/Cargo.toml | 6 +++--- playback/Cargo.toml | 8 ++++---- protocol/Cargo.toml | 2 +- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da66ac19..67372c9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot" -version = "0.1.5" +version = "0.1.6" authors = ["Librespot Org"] license = "MIT" description = "An open source client library for Spotify, with support for Spotify Connect" @@ -22,22 +22,22 @@ doc = false [dependencies.librespot-audio] path = "audio" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-connect] path = "connect" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-core] path = "core" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-metadata] path = "metadata" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-playback] path = "playback" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-protocol] path = "protocol" -version = "0.1.5" +version = "0.1.6" [dependencies] base64 = "0.10" diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 6743a324..71a72f9c 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-audio" -version = "0.1.5" +version = "0.1.6" authors = ["Paul Lietar "] description="The audio fetching and processing logic for librespot" license="MIT" @@ -8,7 +8,7 @@ edition = "2018" [dependencies.librespot-core] path = "../core" -version = "0.1.5" +version = "0.1.6" [dependencies] bit-set = "0.5" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index 5940d00a..fbe6f9e8 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-connect" -version = "0.1.5" +version = "0.1.6" authors = ["Paul Lietar "] description="The discovery and Spotify Connect logic for librespot" license="MIT" @@ -8,13 +8,13 @@ edition = "2018" [dependencies.librespot-core] path = "../core" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-playback] path = "../playback" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-protocol] path = "../protocol" -version = "0.1.5" +version = "0.1.6" [dependencies] base64 = "0.10" diff --git a/core/Cargo.toml b/core/Cargo.toml index 12f8227f..26627868 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-core" -version = "0.1.5" +version = "0.1.6" authors = ["Paul Lietar "] build = "build.rs" description="The core functionality provided by librespot" @@ -9,7 +9,7 @@ edition = "2018" [dependencies.librespot-protocol] path = "../protocol" -version = "0.1.5" +version = "0.1.6" [dependencies] base64 = "0.10" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 5e90b738..7df03dae 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-metadata" -version = "0.1.5" +version = "0.1.6" authors = ["Paul Lietar "] description="The metadata logic for librespot" license="MIT" @@ -15,7 +15,7 @@ log = "0.4" [dependencies.librespot-core] path = "../core" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-protocol] path = "../protocol" -version = "0.1.5" +version = "0.1.6" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index 48e3ce4d..fcf03e08 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-playback" -version = "0.1.5" +version = "0.1.6" authors = ["Sasha Hilton "] description="The audio playback logic for librespot" license="MIT" @@ -8,13 +8,13 @@ edition = "2018" [dependencies.librespot-audio] path = "../audio" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-core] path = "../core" -version = "0.1.5" +version = "0.1.6" [dependencies.librespot-metadata] path = "../metadata" -version = "0.1.5" +version = "0.1.6" [dependencies] futures = "0.1" diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index ead3371b..3df4e9ef 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-protocol" -version = "0.1.5" +version = "0.1.6" authors = ["Paul LiƩtar "] build = "build.rs" description="The protobuf logic for communicating with Spotify servers" From d4b36b239847519e94929658971d6dfec0da2eee Mon Sep 17 00:00:00 2001 From: Sasha Hilton Date: Mon, 22 Feb 2021 00:48:14 +0000 Subject: [PATCH 2/2] Bump cargo.lock --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3ce0e09f..4138fdc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -926,7 +926,7 @@ dependencies = [ [[package]] name = "librespot" -version = "0.1.5" +version = "0.1.6" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -934,12 +934,12 @@ dependencies = [ "getopts 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)", "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.11.27 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-audio 0.1.5", - "librespot-connect 0.1.5", - "librespot-core 0.1.5", - "librespot-metadata 0.1.5", - "librespot-playback 0.1.5", - "librespot-protocol 0.1.5", + "librespot-audio 0.1.6", + "librespot-connect 0.1.6", + "librespot-core 0.1.6", + "librespot-metadata 0.1.6", + "librespot-playback 0.1.6", + "librespot-protocol 0.1.6", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "librespot-audio" -version = "0.1.5" +version = "0.1.6" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "bit-set 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -963,7 +963,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lewton 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-core 0.1.5", + "librespot-core 0.1.6", "librespot-tremor 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "librespot-connect" -version = "0.1.5" +version = "0.1.6" dependencies = [ "aes-ctr 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -984,9 +984,9 @@ dependencies = [ "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.11.27 (registry+https://github.com/rust-lang/crates.io-index)", "libmdns 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-core 0.1.5", - "librespot-playback 0.1.5", - "librespot-protocol 0.1.5", + "librespot-core 0.1.6", + "librespot-playback 0.1.6", + "librespot-protocol 0.1.6", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1001,7 +1001,7 @@ dependencies = [ [[package]] name = "librespot-core" -version = "0.1.5" +version = "0.1.6" dependencies = [ "aes 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1014,7 +1014,7 @@ dependencies = [ "hyper 0.11.27 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-proxy 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-protocol 0.1.5", + "librespot-protocol 0.1.6", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "num-bigint 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "num-integer 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1037,12 +1037,12 @@ dependencies = [ [[package]] name = "librespot-metadata" -version = "0.1.5" +version = "0.1.6" dependencies = [ "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-core 0.1.5", - "librespot-protocol 0.1.5", + "librespot-core 0.1.6", + "librespot-protocol 0.1.6", "linear-map 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1050,7 +1050,7 @@ dependencies = [ [[package]] name = "librespot-playback" -version = "0.1.5" +version = "0.1.6" dependencies = [ "alsa 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1062,9 +1062,9 @@ dependencies = [ "jack 0.5.7 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.73 (registry+https://github.com/rust-lang/crates.io-index)", "libpulse-sys 0.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "librespot-audio 0.1.5", - "librespot-core 0.1.5", - "librespot-metadata 0.1.5", + "librespot-audio 0.1.6", + "librespot-core 0.1.6", + "librespot-metadata 0.1.6", "log 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "portaudio-rs 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "rodio 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1075,7 +1075,7 @@ dependencies = [ [[package]] name = "librespot-protocol" -version = "0.1.5" +version = "0.1.6" dependencies = [ "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "protobuf 2.14.0 (registry+https://github.com/rust-lang/crates.io-index)",