Skip to content

Commit d9bba94

Browse files
committed
Release 0.3.32
1 parent 151e0b9 commit d9bba94

File tree

11 files changed

+52
-35
lines changed

11 files changed

+52
-35
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@ Releases may yanked if there is a security bug, a soundness bug, or a regression
88
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
99
-->
1010

11+
# 0.3.32 - 2026-02-15
12+
13+
* Bump MSRV of utility crates to 1.71. (#2989)
14+
* Soft-deprecate `ready!` macro in favor of `std::task::ready!` added in Rust 1.64 (#2925)
15+
* Soft-deprecate `pin_mut!` macro in favor of `std::pin::pin!` added in Rust 1.68 (#2929)
16+
* Add `FuturesOrdered::clear` (#2927)
17+
* Add `mpsc::*Receiver::recv` (#2947)
18+
* Add `mpsc::*Receiver::try_recv` and deprecate `mpsc::*Receiver::::try_next` (#2944)
19+
* Implement `FusedStream` for `sink::With` (#2948)
20+
* Add `no_std` support for `shared` (#2868)
21+
* Make `Mutex::new()` const (#2956)
22+
* Add `#[clippy::has_significant_drop]` to guards (#2967)
23+
* Remove dependency to `pin-utils` (#2929)
24+
* Remove dependency on `num_cpus` (#2946)
25+
* Performance improvements (#2983)
26+
* Documentation improvements (#2925, #2926, #2940, #2971)
27+
1128
# 0.3.31 - 2024-10-05
1229

1330
* Fix use after free of task in `FuturesUnordered` when dropped future panics (#2886)

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"
@@ -23,8 +23,8 @@ unstable = []
2323
cfg-target-has-atomic = []
2424

2525
[dependencies]
26-
futures-core = { path = "../futures-core", version = "0.3.31", default-features = false }
27-
futures-sink = { path = "../futures-sink", version = "0.3.31", default-features = false, optional = true }
26+
futures-core = { path = "../futures-core", version = "0.3.32", default-features = false }
27+
futures-sink = { path = "../futures-sink", version = "0.3.32", default-features = false, optional = true }
2828

2929
[dev-dependencies]
3030
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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and core-msrv job in .github/workflows/ci.yml
66
rust-version = "1.36"

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"
@@ -17,9 +17,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
1717
thread-pool = ["std"]
1818

1919
[dependencies]
20-
futures-core = { path = "../futures-core", version = "0.3.31", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.31", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.31", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.32", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.32", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.32", default-features = false }
2323

2424
[dev-dependencies]
2525
futures = { path = "../futures", features = ["thread-pool"] }

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and core-msrv job in .github/workflows/ci.yml
66
rust-version = "1.36"

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and core-msrv job in .github/workflows/ci.yml
66
rust-version = "1.36"

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.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"

futures-test/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-test"
3-
version = "0.3.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"
@@ -12,13 +12,13 @@ Common utilities for testing components built off futures-rs.
1212
"""
1313

1414
[dependencies]
15-
futures-core = { version = "0.3.31", path = "../futures-core", default-features = false }
16-
futures-task = { version = "0.3.31", path = "../futures-task", default-features = false }
17-
futures-io = { version = "0.3.31", path = "../futures-io", default-features = false }
18-
futures-util = { version = "0.3.31", path = "../futures-util", default-features = false }
19-
futures-executor = { version = "0.3.31", path = "../futures-executor", default-features = false }
20-
futures-sink = { version = "0.3.31", path = "../futures-sink", default-features = false }
21-
futures-macro = { version = "=0.3.31", path = "../futures-macro", default-features = false }
15+
futures-core = { version = "0.3.32", path = "../futures-core", default-features = false }
16+
futures-task = { version = "0.3.32", path = "../futures-task", default-features = false }
17+
futures-io = { version = "0.3.32", path = "../futures-io", default-features = false }
18+
futures-util = { version = "0.3.32", path = "../futures-util", default-features = false }
19+
futures-executor = { version = "0.3.32", path = "../futures-executor", default-features = false }
20+
futures-sink = { version = "0.3.32", path = "../futures-sink", default-features = false }
21+
futures-macro = { version = "=0.3.32", path = "../futures-macro", default-features = false }
2222
pin-project = "1.0.11"
2323

2424
[dev-dependencies]

futures-util/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-util"
3-
version = "0.3.31"
3+
version = "0.3.32"
44
edition = "2018"
55
# NB: Sync with "Usage" section in README.md and util-msrv job in .github/workflows/ci.yml
66
rust-version = "1.71"
@@ -36,12 +36,12 @@ write-all-vectored = ["io"]
3636
cfg-target-has-atomic = []
3737

3838
[dependencies]
39-
futures-core = { path = "../futures-core", version = "0.3.31", default-features = false }
40-
futures-task = { path = "../futures-task", version = "0.3.31", default-features = false }
41-
futures-channel = { path = "../futures-channel", version = "0.3.31", default-features = false, features = ["std"], optional = true }
42-
futures-io = { path = "../futures-io", version = "0.3.31", default-features = false, features = ["std"], optional = true }
43-
futures-sink = { path = "../futures-sink", version = "0.3.31", default-features = false, optional = true }
44-
futures-macro = { path = "../futures-macro", version = "=0.3.31", default-features = false, optional = true }
39+
futures-core = { path = "../futures-core", version = "0.3.32", default-features = false }
40+
futures-task = { path = "../futures-task", version = "0.3.32", default-features = false }
41+
futures-channel = { path = "../futures-channel", version = "0.3.32", default-features = false, features = ["std"], optional = true }
42+
futures-io = { path = "../futures-io", version = "0.3.32", default-features = false, features = ["std"], optional = true }
43+
futures-sink = { path = "../futures-sink", version = "0.3.32", default-features = false, optional = true }
44+
futures-macro = { path = "../futures-macro", version = "=0.3.32", default-features = false, optional = true }
4545
slab = { version = "0.4.7", default-features = false, optional = true }
4646
memchr = { version = "2.2", optional = true }
4747
futures_01 = { version = "0.1.25", optional = true, package = "futures" }

0 commit comments

Comments
 (0)