diff --git a/CHANGELOG.md b/CHANGELOG.md index f23a1c84e..e689f3691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.3.29 - 2023-10-26 + +* Add `TryStreamExt::try_ready_chunks` (#2757) +* Add `TryStreamExt::{try_all,try_any}` (#2783) +* Add `UnboundedSender::{len,is_empty}` (#2750) +* Fix `Sync` impl of `FuturesUnordered` (#2788) +* Fix infinite loop caused by invalid UTF-8 bytes (#2785) +* Fix build error with -Z minimal-versions (#2761) + # 0.3.28 - 2023-03-30 * Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733) diff --git a/futures-io/Cargo.toml b/futures-io/Cargo.toml index dac499faa..a0699de52 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-io" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.36" license = "MIT OR Apache-2.0" diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 893d22fc6..83ab08533 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -13,7 +13,7 @@ Common utilities for testing components built off futures-rs. [dependencies] futures-core = { version = "=1.0.0-alpha.0", path = "../futures-core", default-features = false } futures-task = { version = "=0.4.0-alpha.0", path = "../futures-task", default-features = false } -futures-io = { version = "0.3.28", path = "../futures-io", default-features = false } +futures-io = { version = "0.3.29", path = "../futures-io", default-features = false } futures-util = { version = "=0.4.0-alpha.0", path = "../futures-util", default-features = false } futures-executor = { version = "=0.4.0-alpha.0", path = "../futures-executor", default-features = false } futures-sink = { version = "=0.4.0-alpha.0", path = "../futures-sink", default-features = false } diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index daf46c26a..63a445ca6 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -34,7 +34,7 @@ write-all-vectored = ["io"] futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false } futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false } futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["std"], optional = true } -futures-io = { path = "../futures-io", version = "0.3.28", default-features = false, features = ["std"], optional = true } +futures-io = { path = "../futures-io", version = "0.3.29", default-features = false, features = ["std"], optional = true } futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false, optional = true } futures-macro = { path = "../futures-macro", version = "=0.4.0-alpha.0", default-features = false, optional = true } slab = { version = "0.4.2", optional = true } diff --git a/futures/Cargo.toml b/futures/Cargo.toml index cf10dda32..648147274 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -19,7 +19,7 @@ futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-f futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false } futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] } futures-executor = { path = "../futures-executor", version = "=0.4.0-alpha.0", default-features = false, optional = true } -futures-io = { path = "../futures-io", version = "0.3.28", default-features = false } +futures-io = { path = "../futures-io", version = "0.3.29", default-features = false } futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false } futures-util = { path = "../futures-util", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] }