Skip to content

Commit 353a627

Browse files
committed
Release 0.3.20
1 parent 525aa37 commit 353a627

File tree

11 files changed

+42
-36
lines changed

11 files changed

+42
-36
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.3.20 - 2022-02-06
2+
3+
* Fix stacked borrows violations when `-Zmiri-tag-raw-pointers` is enabled. This raises MSRV of `futures-task` to 1.45. (#2548, #2550)
4+
* Change `FuturesUnordered` to respect yielding from future (#2551)
5+
* Add `StreamExt::{flatten_unordered, flat_map_unordered}` (#2083)
6+
17
# 0.3.19 - 2021-12-18
28

39
* Remove unstable `read-initializer` feature (#2534)

futures-channel/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-channel"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
@@ -22,8 +22,8 @@ unstable = []
2222
cfg-target-has-atomic = []
2323

2424
[dependencies]
25-
futures-core = { path = "../futures-core", version = "0.3.19", default-features = false }
26-
futures-sink = { path = "../futures-sink", version = "0.3.19", default-features = false, optional = true }
25+
futures-core = { path = "../futures-core", version = "0.3.20", default-features = false }
26+
futures-sink = { path = "../futures-sink", version = "0.3.20", default-features = false, optional = true }
2727

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

futures-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-core"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.36"
66
license = "MIT OR Apache-2.0"

futures-executor/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-executor"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
@@ -16,9 +16,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
1616
thread-pool = ["std", "num_cpus"]
1717

1818
[dependencies]
19-
futures-core = { path = "../futures-core", version = "0.3.19", default-features = false }
20-
futures-task = { path = "../futures-task", version = "0.3.19", default-features = false }
21-
futures-util = { path = "../futures-util", version = "0.3.19", default-features = false }
19+
futures-core = { path = "../futures-core", version = "0.3.20", default-features = false }
20+
futures-task = { path = "../futures-task", version = "0.3.20", default-features = false }
21+
futures-util = { path = "../futures-util", version = "0.3.20", default-features = false }
2222
num_cpus = { version = "1.8.0", optional = true }
2323

2424
[dev-dependencies]

futures-io/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-io"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.36"
66
license = "MIT OR Apache-2.0"

futures-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-macro"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"

futures-sink/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-sink"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.36"
66
license = "MIT OR Apache-2.0"

futures-task/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "futures-task"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
5-
rust-version = "1.36"
5+
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-test/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-test"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
@@ -11,13 +11,13 @@ Common utilities for testing components built off futures-rs.
1111
"""
1212

1313
[dependencies]
14-
futures-core = { version = "0.3.19", path = "../futures-core", default-features = false }
15-
futures-task = { version = "0.3.19", path = "../futures-task", default-features = false }
16-
futures-io = { version = "0.3.19", path = "../futures-io", default-features = false }
17-
futures-util = { version = "0.3.19", path = "../futures-util", default-features = false }
18-
futures-executor = { version = "0.3.19", path = "../futures-executor", default-features = false }
19-
futures-sink = { version = "0.3.19", path = "../futures-sink", default-features = false }
20-
futures-macro = { version = "=0.3.19", path = "../futures-macro", default-features = false }
14+
futures-core = { version = "0.3.20", path = "../futures-core", default-features = false }
15+
futures-task = { version = "0.3.20", path = "../futures-task", default-features = false }
16+
futures-io = { version = "0.3.20", path = "../futures-io", default-features = false }
17+
futures-util = { version = "0.3.20", path = "../futures-util", default-features = false }
18+
futures-executor = { version = "0.3.20", path = "../futures-executor", default-features = false }
19+
futures-sink = { version = "0.3.20", path = "../futures-sink", default-features = false }
20+
futures-macro = { version = "=0.3.20", path = "../futures-macro", default-features = false }
2121
pin-utils = { version = "0.1.0", default-features = false }
2222
pin-project = "1.0.1"
2323

futures-util/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-util"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
@@ -34,12 +34,12 @@ write-all-vectored = ["io"]
3434
cfg-target-has-atomic = []
3535

3636
[dependencies]
37-
futures-core = { path = "../futures-core", version = "0.3.19", default-features = false }
38-
futures-task = { path = "../futures-task", version = "0.3.19", default-features = false }
39-
futures-channel = { path = "../futures-channel", version = "0.3.19", default-features = false, features = ["std"], optional = true }
40-
futures-io = { path = "../futures-io", version = "0.3.19", default-features = false, features = ["std"], optional = true }
41-
futures-sink = { path = "../futures-sink", version = "0.3.19", default-features = false, optional = true }
42-
futures-macro = { path = "../futures-macro", version = "=0.3.19", default-features = false, optional = true }
37+
futures-core = { path = "../futures-core", version = "0.3.20", default-features = false }
38+
futures-task = { path = "../futures-task", version = "0.3.20", default-features = false }
39+
futures-channel = { path = "../futures-channel", version = "0.3.20", default-features = false, features = ["std"], optional = true }
40+
futures-io = { path = "../futures-io", version = "0.3.20", default-features = false, features = ["std"], optional = true }
41+
futures-sink = { path = "../futures-sink", version = "0.3.20", default-features = false, optional = true }
42+
futures-macro = { path = "../futures-macro", version = "=0.3.20", default-features = false, optional = true }
4343
slab = { version = "0.4.2", optional = true }
4444
memchr = { version = "2.2", optional = true }
4545
futures_01 = { version = "0.1.25", optional = true, package = "futures" }

futures/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2018"
55
rust-version = "1.45"
66
license = "MIT OR Apache-2.0"
@@ -15,13 +15,13 @@ composability, and iterator-like interfaces.
1515
categories = ["asynchronous"]
1616

1717
[dependencies]
18-
futures-core = { path = "../futures-core", version = "0.3.19", default-features = false }
19-
futures-task = { path = "../futures-task", version = "0.3.19", default-features = false }
20-
futures-channel = { path = "../futures-channel", version = "0.3.19", default-features = false, features = ["sink"] }
21-
futures-executor = { path = "../futures-executor", version = "0.3.19", default-features = false, optional = true }
22-
futures-io = { path = "../futures-io", version = "0.3.19", default-features = false }
23-
futures-sink = { path = "../futures-sink", version = "0.3.19", default-features = false }
24-
futures-util = { path = "../futures-util", version = "0.3.19", default-features = false, features = ["sink"] }
18+
futures-core = { path = "../futures-core", version = "0.3.20", default-features = false }
19+
futures-task = { path = "../futures-task", version = "0.3.20", default-features = false }
20+
futures-channel = { path = "../futures-channel", version = "0.3.20", default-features = false, features = ["sink"] }
21+
futures-executor = { path = "../futures-executor", version = "0.3.20", default-features = false, optional = true }
22+
futures-io = { path = "../futures-io", version = "0.3.20", default-features = false }
23+
futures-sink = { path = "../futures-sink", version = "0.3.20", default-features = false }
24+
futures-util = { path = "../futures-util", version = "0.3.20", default-features = false, features = ["sink"] }
2525

2626
[dev-dependencies]
2727
futures-executor = { path = "../futures-executor", features = ["thread-pool"] }

0 commit comments

Comments
 (0)