From 86f2a6aa8c0a188c8b75be0e4eac711321fd13d7 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 26 Oct 2023 23:02:13 +0900 Subject: [PATCH] Release 0.3.29 --- CHANGELOG.md | 9 +++++++++ futures-channel/Cargo.toml | 6 +++--- futures-core/Cargo.toml | 2 +- futures-executor/Cargo.toml | 8 ++++---- futures-io/Cargo.toml | 2 +- futures-macro/Cargo.toml | 2 +- futures-sink/Cargo.toml | 2 +- futures-task/Cargo.toml | 2 +- futures-test/Cargo.toml | 16 ++++++++-------- futures-util/Cargo.toml | 14 +++++++------- futures/Cargo.toml | 16 ++++++++-------- 11 files changed, 44 insertions(+), 35 deletions(-) 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-channel/Cargo.toml b/futures-channel/Cargo.toml index 588cf69b2..1f50e60b4 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-channel" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" @@ -22,8 +22,8 @@ unstable = [] cfg-target-has-atomic = [] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.28", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.28", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.29", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.29", default-features = false, optional = true } [dev-dependencies] futures = { path = "../futures", default-features = true } diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index b3499c223..704861cc3 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-core" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.36" license = "MIT OR Apache-2.0" diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index bd47e42a4..22cf99636 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-executor" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" @@ -16,9 +16,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"] thread-pool = ["std", "num_cpus"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.28", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.28", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.28", default-features = false } +futures-core = { path = "../futures-core", version = "0.3.29", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.29", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.29", default-features = false } num_cpus = { version = "1.8.0", optional = true } [dev-dependencies] 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-macro/Cargo.toml b/futures-macro/Cargo.toml index b8982377e..f180d9e9f 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-macro" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" diff --git a/futures-sink/Cargo.toml b/futures-sink/Cargo.toml index ec760185b..dbf5e91be 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-sink" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.36" license = "MIT OR Apache-2.0" diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index 8ae7c3f5a..b3bf447d3 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-task" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 6b16a384a..81f00e914 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-test" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" @@ -11,13 +11,13 @@ Common utilities for testing components built off futures-rs. """ [dependencies] -futures-core = { version = "0.3.28", path = "../futures-core", default-features = false } -futures-task = { version = "0.3.28", path = "../futures-task", default-features = false } -futures-io = { version = "0.3.28", path = "../futures-io", default-features = false } -futures-util = { version = "0.3.28", path = "../futures-util", default-features = false } -futures-executor = { version = "0.3.28", path = "../futures-executor", default-features = false } -futures-sink = { version = "0.3.28", path = "../futures-sink", default-features = false } -futures-macro = { version = "=0.3.28", path = "../futures-macro", default-features = false } +futures-core = { version = "0.3.29", path = "../futures-core", default-features = false } +futures-task = { version = "0.3.29", path = "../futures-task", default-features = false } +futures-io = { version = "0.3.29", path = "../futures-io", default-features = false } +futures-util = { version = "0.3.29", path = "../futures-util", default-features = false } +futures-executor = { version = "0.3.29", path = "../futures-executor", default-features = false } +futures-sink = { version = "0.3.29", path = "../futures-sink", default-features = false } +futures-macro = { version = "=0.3.29", path = "../futures-macro", default-features = false } pin-utils = { version = "0.1.0", default-features = false } pin-project = "1.0.11" diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 93924692f..27e9e9498 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-util" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" @@ -35,12 +35,12 @@ write-all-vectored = ["io"] cfg-target-has-atomic = [] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.28", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.28", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.28", default-features = false, features = ["std"], optional = true } -futures-io = { path = "../futures-io", version = "0.3.28", default-features = false, features = ["std"], optional = true } -futures-sink = { path = "../futures-sink", version = "0.3.28", default-features = false, optional = true } -futures-macro = { path = "../futures-macro", version = "=0.3.28", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.29", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.29", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.29", 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.3.29", default-features = false, optional = true } +futures-macro = { path = "../futures-macro", version = "=0.3.29", default-features = false, optional = true } slab = { version = "0.4.2", optional = true } memchr = { version = "2.2", optional = true } futures_01 = { version = "0.1.25", optional = true, package = "futures" } diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 140fa210f..96db108d3 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures" -version = "0.3.28" +version = "0.3.29" edition = "2018" rust-version = "1.56" license = "MIT OR Apache-2.0" @@ -15,13 +15,13 @@ composability, and iterator-like interfaces. categories = ["asynchronous"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.28", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.28", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.28", default-features = false, features = ["sink"] } -futures-executor = { path = "../futures-executor", version = "0.3.28", default-features = false, optional = true } -futures-io = { path = "../futures-io", version = "0.3.28", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.28", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.28", default-features = false, features = ["sink"] } +futures-core = { path = "../futures-core", version = "0.3.29", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.29", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.29", default-features = false, features = ["sink"] } +futures-executor = { path = "../futures-executor", version = "0.3.29", default-features = false, optional = true } +futures-io = { path = "../futures-io", version = "0.3.29", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.29", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.29", default-features = false, features = ["sink"] } [dev-dependencies] futures-executor = { path = "../futures-executor", features = ["thread-pool"] }