Skip to content

Commit 1e05281

Browse files
committed
Release 0.3.31
1 parent 8a8b085 commit 1e05281

File tree

16 files changed

+53
-40
lines changed

16 files changed

+53
-40
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-channel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-channel"
3-
version = "0.3.30"
3+
version = "0.3.31"
44
edition = "2018"
55
rust-version = "1.56"
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.30", default-features = false }
26-
futures-sink = { path = "../futures-sink", version = "0.3.30", default-features = false, optional = true }
25+
futures-core = { path = "../futures-core", version = "0.3.31", default-features = false }
26+
futures-sink = { path = "../futures-sink", version = "0.3.31", default-features = false, optional = true }
2727

2828
[dev-dependencies]
2929
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,6 +1,6 @@
11
[package]
22
name = "futures-core"
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-executor/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-executor"
3-
version = "0.3.30"
3+
version = "0.3.31"
44
edition = "2018"
55
rust-version = "1.56"
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.30", default-features = false }
20-
futures-task = { path = "../futures-task", version = "0.3.30", default-features = false }
21-
futures-util = { path = "../futures-util", version = "0.3.30", default-features = false }
19+
futures-core = { path = "../futures-core", version = "0.3.31", default-features = false }
20+
futures-task = { path = "../futures-task", version = "0.3.31", default-features = false }
21+
futures-util = { path = "../futures-util", version = "0.3.31", default-features = false }
2222
num_cpus = { version = "1.8.0", optional = true }
2323

2424
[dev-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-macro/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-macro"
3-
version = "0.3.30"
3+
version = "0.3.31"
44
edition = "2018"
55
rust-version = "1.56"
66
license = "MIT OR Apache-2.0"

futures-sink/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-sink"
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-task/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-task"
3-
version = "0.3.30"
3+
version = "0.3.31"
44
edition = "2018"
55
rust-version = "1.56"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)