Skip to content

Commit 22f8aed

Browse files
committed
Update Cargo.lock
1 parent 38bebc2 commit 22f8aed

File tree

10 files changed

+166
-173
lines changed

10 files changed

+166
-173
lines changed

Cargo.lock

Lines changed: 138 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Librespot Org"]
55
license = "MIT"
66
description = "An open source client library for Spotify, with support for Spotify Connect"
@@ -22,31 +22,31 @@ doc = false
2222

2323
[dependencies.librespot-audio]
2424
path = "audio"
25-
version = "0.4.1"
25+
version = "0.4.2"
2626

2727
[dependencies.librespot-connect]
2828
path = "connect"
29-
version = "0.4.1"
29+
version = "0.4.2"
3030

3131
[dependencies.librespot-core]
3232
path = "core"
33-
version = "0.4.1"
33+
version = "0.4.2"
3434

3535
[dependencies.librespot-discovery]
3636
path = "discovery"
37-
version = "0.4.1"
37+
version = "0.4.2"
3838

3939
[dependencies.librespot-metadata]
4040
path = "metadata"
41-
version = "0.4.1"
41+
version = "0.4.2"
4242

4343
[dependencies.librespot-playback]
4444
path = "playback"
45-
version = "0.4.1"
45+
version = "0.4.2"
4646

4747
[dependencies.librespot-protocol]
4848
path = "protocol"
49-
version = "0.4.1"
49+
version = "0.4.2"
5050

5151
[dependencies]
5252
base64 = "0.13"

audio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-audio"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
description = "The audio fetching logic for librespot"
66
license = "MIT"
@@ -9,7 +9,7 @@ edition = "2018"
99

1010
[dependencies.librespot-core]
1111
path = "../core"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313

1414
[dependencies]
1515
aes-ctr = "0.6"

connect/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-connect"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
description = "The discovery and Spotify Connect logic for librespot"
66
license = "MIT"
@@ -20,19 +20,19 @@ tokio-stream = "0.1.1"
2020

2121
[dependencies.librespot-core]
2222
path = "../core"
23-
version = "0.4.1"
23+
version = "0.4.2"
2424

2525
[dependencies.librespot-playback]
2626
path = "../playback"
27-
version = "0.4.1"
27+
version = "0.4.2"
2828

2929
[dependencies.librespot-protocol]
3030
path = "../protocol"
31-
version = "0.4.1"
31+
version = "0.4.2"
3232

3333
[dependencies.librespot-discovery]
3434
path = "../discovery"
35-
version = "0.4.1"
35+
version = "0.4.2"
3636

3737
[features]
3838
with-dns-sd = ["librespot-discovery/with-dns-sd"]

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-core"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
build = "build.rs"
66
description = "The core functionality provided by librespot"
@@ -10,7 +10,7 @@ edition = "2018"
1010

1111
[dependencies.librespot-protocol]
1212
path = "../protocol"
13-
version = "0.4.1"
13+
version = "0.4.2"
1414

1515
[dependencies]
1616
aes = "0.6"

discovery/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-discovery"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
description = "The discovery logic for librespot"
66
license = "MIT"
@@ -27,7 +27,7 @@ dns-sd = { version = "0.1.3", optional = true }
2727
[dependencies.librespot-core]
2828
path = "../core"
2929
default_features = false
30-
version = "0.4.1"
30+
version = "0.4.2"
3131

3232
[dev-dependencies]
3333
futures = "0.3"

metadata/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-metadata"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
description = "The metadata logic for librespot"
66
license = "MIT"
@@ -15,7 +15,7 @@ log = "0.4"
1515

1616
[dependencies.librespot-core]
1717
path = "../core"
18-
version = "0.4.1"
18+
version = "0.4.2"
1919
[dependencies.librespot-protocol]
2020
path = "../protocol"
21-
version = "0.4.1"
21+
version = "0.4.2"

playback/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-playback"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
55
description = "The audio playback logic for librespot"
66
license = "MIT"
@@ -9,13 +9,13 @@ edition = "2018"
99

1010
[dependencies.librespot-audio]
1111
path = "../audio"
12-
version = "0.4.1"
12+
version = "0.4.2"
1313
[dependencies.librespot-core]
1414
path = "../core"
15-
version = "0.4.1"
15+
version = "0.4.2"
1616
[dependencies.librespot-metadata]
1717
path = "../metadata"
18-
version = "0.4.1"
18+
version = "0.4.2"
1919

2020
[dependencies]
2121
futures-executor = "0.3"

protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-protocol"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Paul Liétar <paul@lietar.net>"]
55
build = "build.rs"
66
description = "The protobuf logic for communicating with Spotify servers"

publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function updateVersion {
3333
fi
3434
crate_path="$WORKINGDIR/$CRATE_DIR/Cargo.toml"
3535
crate_path=${crate_path//\/\///}
36-
sed -i '' "s/^version.*/version = \"$1\"/g" "$crate_path"
36+
sed -i "s/^version.*/version = \"$1\"/g" "$crate_path"
3737
echo "Path is $crate_path"
3838
if [ "$CRATE" = "librespot" ]
3939
then

0 commit comments

Comments
 (0)