From 7f509b523d6ca634ebe17c002ec595d8da3f2a81 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 15 Jan 2021 03:32:10 +0900 Subject: [PATCH] Release 0.3.11 --- CHANGELOG.md | 3 +++ examples/functional/Cargo.toml | 4 ++-- examples/imperative/Cargo.toml | 4 ++-- 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 | 14 +++++++------- futures-util/Cargo.toml | 14 +++++++------- futures/Cargo.toml | 16 ++++++++-------- 13 files changed, 41 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb8859292..af48c525c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.3.11 - 2021-01-14 +* Fixed heap buffer overflow in `AsyncReadExt::{read_to_end, read_to_string}` (#2314) + # 0.3.10 - 2021-01-13 * Fixed type-inference in `sink::unfold` by specifying more of its types (breaking change -- see #2311) diff --git a/examples/functional/Cargo.toml b/examples/functional/Cargo.toml index ca7a54cea2..c0318c098d 100644 --- a/examples/functional/Cargo.toml +++ b/examples/functional/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-example-functional" edition = "2018" -version = "0.3.10" +version = "0.3.11" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -17,4 +17,4 @@ categories = ["asynchronous"] publish = false [dependencies] -futures = { path = "../../futures", version = "0.3.10", features = ["thread-pool"] } +futures = { path = "../../futures", version = "0.3.11", features = ["thread-pool"] } diff --git a/examples/imperative/Cargo.toml b/examples/imperative/Cargo.toml index db937f3951..19a75599fd 100644 --- a/examples/imperative/Cargo.toml +++ b/examples/imperative/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-example-imperative" edition = "2018" -version = "0.3.10" +version = "0.3.11" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -17,4 +17,4 @@ categories = ["asynchronous"] publish = false [dependencies] -futures = { path = "../../futures", version = "0.3.10", features = ["thread-pool"] } +futures = { path = "../../futures", version = "0.3.11", features = ["thread-pool"] } diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 40c0cc417c..b8cd4fed29 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-channel" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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.10", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.10", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.11", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.11", 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 b2fb3339c4..aa75cca4d0 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-core" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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 140aa51821..8b15f63994 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-executor" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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.10", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.10", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.10", default-features = false } +futures-core = { path = "../futures-core", version = "0.3.11", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.11", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.11", 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 94d01d5b8c..f8a34ab338 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-io" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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 562a1ff6f0..49024530a8 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-macro" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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 f95c67c347..a3da1c9e76 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-sink" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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 20533fccfb..a58ad91381 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-task" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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 4c6e577808..59d6c94622 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-test" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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.10", path = "../futures-core", default-features = false } -futures-task = { version = "0.3.10", path = "../futures-task", default-features = false } -futures-io = { version = "0.3.10", path = "../futures-io", default-features = false } -futures-util = { version = "0.3.10", path = "../futures-util", default-features = false } -futures-executor = { version = "0.3.10", path = "../futures-executor", default-features = false } -futures-sink = { version = "0.3.10", path = "../futures-sink", default-features = false } +futures-core = { version = "0.3.11", path = "../futures-core", default-features = false } +futures-task = { version = "0.3.11", path = "../futures-task", default-features = false } +futures-io = { version = "0.3.11", path = "../futures-io", default-features = false } +futures-util = { version = "0.3.11", path = "../futures-util", default-features = false } +futures-executor = { version = "0.3.11", path = "../futures-executor", default-features = false } +futures-sink = { version = "0.3.11", path = "../futures-sink", default-features = false } pin-utils = { version = "0.1.0", default-features = false } once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true } pin-project = "1.0.1" diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 419d46e647..7cc4c9bdb1 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-util" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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.10", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.10", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.10", default-features = false, features = ["std"], optional = true } -futures-io = { path = "../futures-io", version = "0.3.10", default-features = false, features = ["std"], optional = true } -futures-sink = { path = "../futures-sink", version = "0.3.10", default-features = false, optional = true } -futures-macro = { path = "../futures-macro", version = "=0.3.10", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.11", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.11", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.11", default-features = false, features = ["std"], optional = true } +futures-io = { path = "../futures-io", version = "0.3.11", default-features = false, features = ["std"], optional = true } +futures-sink = { path = "../futures-sink", version = "0.3.11", default-features = false, optional = true } +futures-macro = { path = "../futures-macro", version = "=0.3.11", 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 32bb418b5e..6e5cef581a 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures" edition = "2018" -version = "0.3.10" +version = "0.3.11" 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.10", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.10", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.10", default-features = false, features = ["sink"] } -futures-executor = { path = "../futures-executor", version = "0.3.10", default-features = false, optional = true } -futures-io = { path = "../futures-io", version = "0.3.10", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.10", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.10", default-features = false, features = ["sink"] } +futures-core = { path = "../futures-core", version = "0.3.11", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.11", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.11", default-features = false, features = ["sink"] } +futures-executor = { path = "../futures-executor", version = "0.3.11", default-features = false, optional = true } +futures-io = { path = "../futures-io", version = "0.3.11", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.11", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.11", default-features = false, features = ["sink"] } [dev-dependencies] pin-utils = "0.1.0"