Skip to content

Commit 16afd7c

Browse files
committed
Stage 0.3.1
1 parent fc5f44c commit 16afd7c

File tree

12 files changed

+46
-43
lines changed

12 files changed

+46
-43
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.3.1 - 2019-11-7
2+
* Fix signature of `LocalSpawn` trait (breaking change -- see #1959)
3+
14
# 0.3.0 - 2019-11-5
25
* Stable release along with stable async/await!
36
* Added async/await to default features (#1953)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ a `#[no_std]` environment, use:
5858

5959
```toml
6060
[dependencies]
61-
futures = { version = "0.3.0", default-features = false }
61+
futures = { version = "0.3.1", default-features = false }
6262
```
6363

6464
# License

futures-channel/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-channel"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -27,9 +27,9 @@ unstable = ["futures-core/unstable"]
2727
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]
2828

2929
[dependencies]
30-
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
31-
futures-sink = { path = "../futures-sink", version = "0.3.0", default-features = false, optional = true }
30+
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
31+
futures-sink = { path = "../futures-sink", version = "0.3.1", default-features = false, optional = true }
3232

3333
[dev-dependencies]
34-
futures = { path = "../futures", version = "0.3.0", default-features = true }
35-
futures-test = { path = "../futures-test", version = "0.3.0", default-features = true }
34+
futures = { path = "../futures", version = "0.3.1", default-features = true }
35+
futures-test = { path = "../futures-test", version = "0.3.1", default-features = true }

futures-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-core"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -28,4 +28,4 @@ cfg-target-has-atomic = []
2828
[dependencies]
2929

3030
[dev-dependencies]
31-
futures = { path = "../futures", version = "0.3.0" }
31+
futures = { path = "../futures", version = "0.3.1" }

futures-executor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-executor"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -20,10 +20,10 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
2020
thread-pool = ["std", "num_cpus"]
2121

2222
[dependencies]
23-
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
24-
futures-task = { path = "../futures-task", version = "0.3.0", default-features = false }
25-
futures-util = { path = "../futures-util", version = "0.3.0", default-features = false }
23+
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
24+
futures-task = { path = "../futures-task", version = "0.3.1", default-features = false }
25+
futures-util = { path = "../futures-util", version = "0.3.1", default-features = false }
2626
num_cpus = { version = "1.8.0", optional = true }
2727

2828
[dev-dependencies]
29-
futures = { path = "../futures", version = "0.3.0" }
29+
futures = { path = "../futures", version = "0.3.1" }

futures-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-io"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-macro"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-sink/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-sink"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-task/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-task"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -28,4 +28,4 @@ cfg-target-has-atomic = []
2828
[dependencies]
2929

3030
[dev-dependencies]
31-
futures = { path = "../futures", version = "0.3.0" }
31+
futures = { path = "../futures", version = "0.3.1" }

futures-test/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-test"
33
edition = "2018"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Wim Looman <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -15,15 +15,15 @@ Common utilities for testing components built off futures-rs.
1515
name = "futures_test"
1616

1717
[dependencies]
18-
futures-core = { version = "0.3.0", path = "../futures-core", default-features = false }
19-
futures-task = { version = "0.3.0", path = "../futures-task", default-features = false }
20-
futures-io = { version = "0.3.0", path = "../futures-io", default-features = false }
21-
futures-util = { version = "0.3.0", path = "../futures-util", default-features = false }
22-
futures-executor = { version = "0.3.0", path = "../futures-executor", default-features = false }
18+
futures-core = { version = "0.3.1", path = "../futures-core", default-features = false }
19+
futures-task = { version = "0.3.1", path = "../futures-task", default-features = false }
20+
futures-io = { version = "0.3.1", path = "../futures-io", default-features = false }
21+
futures-util = { version = "0.3.1", path = "../futures-util", default-features = false }
22+
futures-executor = { version = "0.3.1", path = "../futures-executor", default-features = false }
2323
pin-utils = { version = "0.1.0-alpha.4", default-features = false }
2424

2525
[dev-dependencies]
26-
futures = { version = "0.3.0", path = "../futures", default-features = false, features = ["std"] }
26+
futures = { version = "0.3.1", path = "../futures", default-features = false, features = ["std"] }
2727

2828
[features]
2929
default = ["std"]

0 commit comments

Comments
 (0)