Skip to content

Commit 631aa93

Browse files
committed
Sync with 0.3.31
1 parent bbfc1ed commit 631aa93

File tree

10 files changed

+22
-9
lines changed

10 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.3.31 - 2024-10-05
2+
3+
* Fix use after free of task in `FuturesUnordered` when dropped future panics (#2886)
4+
* Fix soundness bug in `task::waker_ref` (#2830)
5+
This is a breaking change but allowed because it is soundness bug fix.
6+
* Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines` (#2884)
7+
* Fix parsing issue in `select!`/`select_biased!` (#2832)
8+
This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
9+
* Work around issue due to upstream `Waker::will_wake` change (#2865)
10+
* Add `stream::Iter::{get_ref,get_mut,into_inner}` (#2875)
11+
* Add `future::AlwaysReady` (#2825)
12+
* Relax trait bound on non-constructor methods of `io::{BufReader,BufWriter}` (#2848)
13+
114
# 0.3.30 - 2023-12-24
215

316
* Add `{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of` (#2797)

examples/functional/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-example-functional"
3+
version = "0.0.0"
34
edition = "2018"
4-
version = "0.1.0"
55
publish = false
66

77
[dependencies]

examples/imperative/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-example-imperative"
3+
version = "0.0.0"
34
edition = "2018"
4-
version = "0.1.0"
55
publish = false
66

77
[dependencies]

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.30"
3+
version = "0.3.31"
44
edition = "2018"
55
rust-version = "1.36"
66
license = "MIT OR Apache-2.0"

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.30", path = "../futures-io", default-features = false }
16+
futures-io = { version = "0.3.31", 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
@@ -34,7 +34,7 @@ write-all-vectored = ["io"]
3434
futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false }
3535
futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false }
3636
futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["std"], optional = true }
37-
futures-io = { path = "../futures-io", version = "0.3.30", default-features = false, features = ["std"], optional = true }
37+
futures-io = { path = "../futures-io", version = "0.3.31", default-features = false, features = ["std"], optional = true }
3838
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false, optional = true }
3939
futures-macro = { path = "../futures-macro", version = "=0.4.0-alpha.0", default-features = false, optional = true }
4040
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.30", default-features = false }
22+
futures-io = { path = "../futures-io", version = "0.3.31", 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

futures/tests/macro-reexport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro-reexport"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2018"
55
publish = false
66

futures/tests/macro-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro-tests"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2018"
55
publish = false
66

futures/tests/no-std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "no-std"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2018"
55
publish = false
66

0 commit comments

Comments
 (0)