diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f5679f90..4f2aea765b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.3.14 - 2021-04-10 +- Add `future::SelectAll::into_inner` (#2363) +- Allow calling `UnboundedReceiver::try_next` after `None` (#2369) +- Reexport non-Ext traits from the root of `futures_util` (#2377) +- Add `AsyncSeekExt::stream_position` (#2380) +- Add `stream::Peekable::{next_if, next_if_eq}` (#2379) + # 0.3.13 - 2021-02-23 - Mitigated starvation issues in `FuturesUnordered` (#2333) - Fixed race with dropping `mpsc::Receiver` (#2304) diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 9a33320a16..d7843e7d5e 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-channel" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -24,8 +24,8 @@ unstable = ["futures-core/unstable"] cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.13", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.14", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.14", 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 55601dbb6e..e4c42f717e 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-core" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index bc1853b01e..225b7c0070 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-executor" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -17,9 +17,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.13", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.13", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.13", default-features = false } +futures-core = { path = "../futures-core", version = "0.3.14", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.14", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.14", 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 2edbdc37ba..329f09f3bf 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-io" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" diff --git a/futures-macro/Cargo.toml b/futures-macro/Cargo.toml index 090f73608d..4ab6860bb3 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-macro" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Taylor Cramer ", "Taiki Endo "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" diff --git a/futures-sink/Cargo.toml b/futures-sink/Cargo.toml index 59853a985d..6cf7802660 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-sink" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" diff --git a/futures-task/Cargo.toml b/futures-task/Cargo.toml index 764a692c24..68abccd6a9 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-task" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index d7a39212af..4835f447b0 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-test" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Wim Looman "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -12,12 +12,12 @@ Common utilities for testing components built off futures-rs. """ [dependencies] -futures-core = { version = "0.3.13", path = "../futures-core", default-features = false } -futures-task = { version = "0.3.13", path = "../futures-task", default-features = false } -futures-io = { version = "0.3.13", path = "../futures-io", default-features = false } -futures-util = { version = "0.3.13", path = "../futures-util", default-features = false } -futures-executor = { version = "0.3.13", path = "../futures-executor", default-features = false } -futures-sink = { version = "0.3.13", path = "../futures-sink", default-features = false } +futures-core = { version = "0.3.14", path = "../futures-core", default-features = false } +futures-task = { version = "0.3.14", path = "../futures-task", default-features = false } +futures-io = { version = "0.3.14", path = "../futures-io", default-features = false } +futures-util = { version = "0.3.14", path = "../futures-util", default-features = false } +futures-executor = { version = "0.3.14", path = "../futures-executor", default-features = false } +futures-sink = { version = "0.3.14", path = "../futures-sink", default-features = false } pin-utils = { version = "0.1.0", default-features = false } pin-project = "1.0.1" diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index b7cc19370e..424e372630 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-util" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -33,12 +33,12 @@ read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"] write-all-vectored = ["io"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.13", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.13", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, features = ["std"], optional = true } -futures-io = { path = "../futures-io", version = "0.3.13", default-features = false, features = ["std"], optional = true } -futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false, optional = true } -futures-macro = { path = "../futures-macro", version = "=0.3.13", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.14", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.14", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.14", default-features = false, features = ["std"], optional = true } +futures-io = { path = "../futures-io", version = "0.3.14", default-features = false, features = ["std"], optional = true } +futures-sink = { path = "../futures-sink", version = "0.3.14", default-features = false, optional = true } +futures-macro = { path = "../futures-macro", version = "=0.3.14", default-features = false, optional = true } proc-macro-hack = { version = "0.5.19", optional = true } proc-macro-nested = { version = "0.1.2", optional = true } slab = { version = "0.4.2", optional = true } diff --git a/futures/Cargo.toml b/futures/Cargo.toml index d046c54215..a0a64bfece 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures" edition = "2018" -version = "0.3.13" +version = "0.3.14" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -16,13 +16,13 @@ composability, and iterator-like interfaces. categories = ["asynchronous"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.13", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.13", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, features = ["sink"] } -futures-executor = { path = "../futures-executor", version = "0.3.13", default-features = false, optional = true } -futures-io = { path = "../futures-io", version = "0.3.13", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.13", default-features = false, features = ["sink"] } +futures-core = { path = "../futures-core", version = "0.3.14", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.14", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.14", default-features = false, features = ["sink"] } +futures-executor = { path = "../futures-executor", version = "0.3.14", default-features = false, optional = true } +futures-io = { path = "../futures-io", version = "0.3.14", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.14", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.14", default-features = false, features = ["sink"] } [dev-dependencies] futures-executor = { path = "../futures-executor", features = ["thread-pool"] }