diff --git a/Cargo.toml b/Cargo.toml index e2dfda2d..085ccb8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies.librespot-connect] path = "connect" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-core] path = "core" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-metadata] path = "metadata" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-playback] path = "playback" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-protocol] path = "protocol" -version = "0.1.2" +version = "0.1.3" [dependencies] base64 = "0.10" diff --git a/audio/Cargo.toml b/audio/Cargo.toml index 871e3eae..85de4eb0 100644 --- a/audio/Cargo.toml +++ b/audio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-audio" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies] bit-set = "0.5" diff --git a/connect/Cargo.toml b/connect/Cargo.toml index d9df0758..6c241133 100644 --- a/connect/Cargo.toml +++ b/connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-connect" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies.librespot-playback] path = "../playback" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-protocol] path = "../protocol" -version = "0.1.2" +version = "0.1.3" [dependencies] base64 = "0.10" diff --git a/core/Cargo.toml b/core/Cargo.toml index a9a2639e..fbcd70ae 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-core" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies] base64 = "0.10" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 3c656055..a4ca2575 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-metadata" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies.librespot-protocol] path = "../protocol" -version = "0.1.2" +version = "0.1.3" diff --git a/playback/Cargo.toml b/playback/Cargo.toml index 02ca913f..699a3f53 100644 --- a/playback/Cargo.toml +++ b/playback/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-playback" -version = "0.1.2" +version = "0.1.3" 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.2" +version = "0.1.3" [dependencies.librespot-core] path = "../core" -version = "0.1.2" +version = "0.1.3" [dependencies.librespot-metadata] path = "../metadata" -version = "0.1.2" +version = "0.1.3" [dependencies] futures = "0.1" @@ -42,4 +42,4 @@ pulseaudio-backend = ["libpulse-sys", "libc"] jackaudio-backend = ["jack"] rodio-backend = ["rodio", "cpal"] sdl-backend = ["sdl2"] -gstreamer-backend = ["gstreamer", "gstreamer-app", "glib", "zerocopy"] \ No newline at end of file +gstreamer-backend = ["gstreamer", "gstreamer-app", "glib", "zerocopy"] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 54fd796a..4e59d7b3 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "librespot-protocol" -version = "0.1.2" +version = "0.1.3" authors = ["Paul LiƩtar "] build = "build.rs" description="The protobuf logic for communicating with Spotify servers"