Skip to content

Commit dff1937

Browse files
committed
Update version numbers to 0.4.0
1 parent 310b3cc commit dff1937

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

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.3.1"
3+
version = "0.4.0"
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.3.1"
25+
version = "0.4.0"
2626

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

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

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

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

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

4747
[dependencies.librespot-protocol]
4848
path = "protocol"
49-
version = "0.3.1"
49+
version = "0.4.0"
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,14 +1,14 @@
11
[package]
22
name = "librespot-audio"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
authors = ["Paul Lietar <paul@lietar.net>"]
55
description="The audio fetching and processing logic for librespot"
66
license="MIT"
77
edition = "2018"
88

99
[dependencies.librespot-core]
1010
path = "../core"
11-
version = "0.3.1"
11+
version = "0.4.0"
1212

1313
[dependencies]
1414
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.3.1"
3+
version = "0.4.0"
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.3.1"
23+
version = "0.4.0"
2424

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

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

3333
[dependencies.librespot-discovery]
3434
path = "../discovery"
35-
version = "0.3.1"
35+
version = "0.4.0"
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.3.1"
3+
version = "0.4.0"
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.3.1"
13+
version = "0.4.0"
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.3.1"
3+
version = "0.4.0"
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.3.1"
30+
version = "0.4.0"
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.3.1"
3+
version = "0.4.0"
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.3.1"
18+
version = "0.4.0"
1919
[dependencies.librespot-protocol]
2020
path = "../protocol"
21-
version = "0.3.1"
21+
version = "0.4.0"

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.3.1"
3+
version = "0.4.0"
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.3.1"
12+
version = "0.4.0"
1313
[dependencies.librespot-core]
1414
path = "../core"
15-
version = "0.3.1"
15+
version = "0.4.0"
1616
[dependencies.librespot-metadata]
1717
path = "../metadata"
18-
version = "0.3.1"
18+
version = "0.4.0"
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.3.1"
3+
version = "0.4.0"
44
authors = ["Paul Liétar <paul@lietar.net>"]
55
build = "build.rs"
66
description = "The protobuf logic for communicating with Spotify servers"

0 commit comments

Comments
 (0)