Skip to content

Commit 60b02d2

Browse files
authored
Release 0.3.10
1 parent b008f34 commit 60b02d2

File tree

13 files changed

+41
-38
lines changed

13 files changed

+41
-38
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.10 - 2021-01-12
2+
* Fixed type-inference in `sink::unfold` by specifying more of its types (breaking change -- see #2311)
3+
14
# 0.3.9 - 2021-01-08
25
* Significantly improved compile time when `async-await` crate feature is disabled (#2273)
36
* Added `stream::repeat_with` (#2279)

examples/functional/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-example-functional"
33
edition = "2018"
4-
version = "0.3.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.9", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.10", features = ["thread-pool"] }

examples/imperative/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-example-imperative"
33
edition = "2018"
4-
version = "0.3.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.9", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.10", features = ["thread-pool"] }

futures-channel/Cargo.toml

Lines changed: 3 additions & 3 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.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -24,8 +24,8 @@ unstable = ["futures-core/unstable"]
2424
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]
2525

2626
[dependencies]
27-
futures-core = { path = "../futures-core", version = "0.3.9", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.9", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.10", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.10", default-features = false, optional = true }
2929

3030
[dev-dependencies]
3131
futures = { path = "../futures", default-features = true }

futures-core/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-core"
33
edition = "2018"
4-
version = "0.3.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-executor/Cargo.toml

Lines changed: 4 additions & 4 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.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -17,9 +17,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
1717
thread-pool = ["std", "num_cpus"]
1818

1919
[dependencies]
20-
futures-core = { path = "../futures-core", version = "0.3.9", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.9", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.9", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.10", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.10", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.10", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]

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.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/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.9"
4+
version = "0.3.10"
55
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/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.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-task/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-task"
33
edition = "2018"
4-
version = "0.3.9"
4+
version = "0.3.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

0 commit comments

Comments
 (0)