Skip to content

Commit f6f4c0b

Browse files
committed
Sync with 0.3.20
1 parent 10a5dd7 commit f6f4c0b

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
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-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-task"
33
version = "0.4.0-alpha.0"
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-task/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-task = "0.3"
1212
```
1313

14-
The current `futures-task` requires Rust 1.36 or later.
14+
The current `futures-task` requires Rust 1.45 or later.
1515

1616
## License
1717

futures-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Common utilities for testing components built off futures-rs.
1313
[dependencies]
1414
futures-core = { version = "=1.0.0-alpha.0", path = "../futures-core", default-features = false }
1515
futures-task = { version = "=0.4.0-alpha.0", path = "../futures-task", default-features = false }
16-
futures-io = { version = "0.3.19", path = "../futures-io", default-features = false }
16+
futures-io = { version = "0.3.20", path = "../futures-io", default-features = false }
1717
futures-util = { version = "=0.4.0-alpha.0", path = "../futures-util", default-features = false }
1818
futures-executor = { version = "=0.4.0-alpha.0", path = "../futures-executor", default-features = false }
1919
futures-sink = { version = "=0.4.0-alpha.0", path = "../futures-sink", default-features = false }

futures-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ write-all-vectored = ["io"]
3333
futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false }
3434
futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false }
3535
futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["std"], optional = true }
36-
futures-io = { path = "../futures-io", version = "0.3.19", default-features = false, features = ["std"], optional = true }
36+
futures-io = { path = "../futures-io", version = "0.3.20", default-features = false, features = ["std"], optional = true }
3737
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false, optional = true }
3838
futures-macro = { path = "../futures-macro", version = "=0.4.0-alpha.0", default-features = false, optional = true }
3939
slab = { version = "0.4.2", optional = true }

futures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-f
1919
futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false }
2020
futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] }
2121
futures-executor = { path = "../futures-executor", version = "=0.4.0-alpha.0", default-features = false, optional = true }
22-
futures-io = { path = "../futures-io", version = "0.3.19", default-features = false }
22+
futures-io = { path = "../futures-io", version = "0.3.20", default-features = false }
2323
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false }
2424
futures-util = { path = "../futures-util", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] }
2525

0 commit comments

Comments
 (0)