Update version numbers to 0.1.1

This commit is contained in:
Sasha Hilton 2020-01-30 02:39:41 +01:00
parent 83140bea88
commit 6daa2acd0a
7 changed files with 23 additions and 23 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.1.0"
version = "0.1.1"
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.0"
version = "0.1.1"
[dependencies.librespot-connect]
path = "connect"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-core]
path = "core"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-metadata]
path = "metadata"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-playback]
path = "playback"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.1.0"
version = "0.1.1"
[dependencies]
base64 = "0.10"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.1.0"
version = "0.1.1"
authors = ["Paul Lietar <paul@lietar.net>"]
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.0"
version = "0.1.1"
[dependencies]
bit-set = "0.5"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.1.0"
version = "0.1.1"
authors = ["Paul Lietar <paul@lietar.net>"]
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.0"
version = "0.1.1"
[dependencies.librespot-playback]
path = "../playback"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.0"
version = "0.1.1"
[dependencies]
base64 = "0.10"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.1.0"
version = "0.1.1"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description="The core functionality provided by librespot"
@ -9,7 +9,7 @@ edition = "2018"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.0"
version = "0.1.1"
[dependencies]
base64 = "0.10"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.1.0"
version = "0.1.1"
authors = ["Paul Lietar <paul@lietar.net>"]
description="The metadata logic for librespot"
license="MIT"
@ -15,7 +15,7 @@ log = "0.4"
[dependencies.librespot-core]
path = "../core"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.0"
version = "0.1.1"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.1.0"
version = "0.1.1"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description="The audio playback logic for librespot"
license="MIT"
@ -8,13 +8,13 @@ edition = "2018"
[dependencies.librespot-audio]
path = "../audio"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-core]
path = "../core"
version = "0.1.0"
version = "0.1.1"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.1.0"
version = "0.1.1"
[dependencies]
futures = "0.1"

View file

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