diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd597aae2..a67f12363c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.3.3 - 2020-02-04 +* Fixed compatibility issue with pinned facade (#2062) + # 0.3.2 - 2020-02-03 * Improved buffering performance of `SplitSink` (#1969) * Added `select_biased!` macro (#1976) diff --git a/README.md b/README.md index 2441402040..9e4fb139cd 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ a `#[no_std]` environment, use: ```toml [dependencies] -futures = { version = "0.3.2", default-features = false } +futures = { version = "0.3.3", default-features = false } ``` # License diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 4072a4d150..4accdd1739 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-channel" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -24,12 +24,12 @@ unstable = ["futures-core/unstable"] cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.2", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.3", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.3", default-features = false, optional = true } [dev-dependencies] -futures = { path = "../futures", version = "0.3.2", default-features = true } -futures-test = { path = "../futures-test", version = "0.3.2", default-features = true } +futures = { path = "../futures", version = "0.3.3", default-features = true } +futures-test = { path = "../futures-test", version = "0.3.3", default-features = true } [package.metadata.docs.rs] all-features = true diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index fff0dcdc62..d979ef20c2 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-core" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -25,7 +25,7 @@ cfg-target-has-atomic = [] [dependencies] [dev-dependencies] -futures = { path = "../futures", version = "0.3.2" } +futures = { path = "../futures", version = "0.3.3" } [package.metadata.docs.rs] all-features = true diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index d925f5987e..f1680d2a7e 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-executor" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -17,13 +17,13 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"] thread-pool = ["std", "num_cpus"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.2", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.2", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.2", default-features = false } +futures-core = { path = "../futures-core", version = "0.3.3", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.3", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.3", default-features = false } num_cpus = { version = "1.8.0", optional = true } [dev-dependencies] -futures = { path = "../futures", version = "0.3.2" } +futures = { path = "../futures", version = "0.3.3" } [package.metadata.docs.rs] all-features = true diff --git a/futures-io/Cargo.toml b/futures-io/Cargo.toml index da961078eb..b8e0589baf 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-io" edition = "2018" -version = "0.3.2" +version = "0.3.3" 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 8217cec23a..d5b0e5b31f 100644 --- a/futures-macro/Cargo.toml +++ b/futures-macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-macro" edition = "2018" -version = "0.3.2" +version = "0.3.3" 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 b4854f8382..9c4594a1bf 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-sink" edition = "2018" -version = "0.3.2" +version = "0.3.3" 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 18b747bc4c..6afcf340b9 100644 --- a/futures-task/Cargo.toml +++ b/futures-task/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-task" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -25,7 +25,7 @@ cfg-target-has-atomic = [] [dependencies] [dev-dependencies] -futures = { path = "../futures", version = "0.3.2" } +futures = { path = "../futures", version = "0.3.3" } [package.metadata.docs.rs] all-features = true diff --git a/futures-test/Cargo.toml b/futures-test/Cargo.toml index 0169e250d1..760c87abeb 100644 --- a/futures-test/Cargo.toml +++ b/futures-test/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-test" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Wim Looman "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -12,15 +12,15 @@ Common utilities for testing components built off futures-rs. """ [dependencies] -futures-core = { version = "0.3.2", path = "../futures-core", default-features = false } -futures-task = { version = "0.3.2", path = "../futures-task", default-features = false } -futures-io = { version = "0.3.2", path = "../futures-io", default-features = false } -futures-util = { version = "0.3.2", path = "../futures-util", default-features = false } -futures-executor = { version = "0.3.2", path = "../futures-executor", default-features = false } +futures-core = { version = "0.3.3", path = "../futures-core", default-features = false } +futures-task = { version = "0.3.3", path = "../futures-task", default-features = false } +futures-io = { version = "0.3.3", path = "../futures-io", default-features = false } +futures-util = { version = "0.3.3", path = "../futures-util", default-features = false } +futures-executor = { version = "0.3.3", path = "../futures-executor", default-features = false } pin-utils = { version = "0.1.0-alpha.4", default-features = false } [dev-dependencies] -futures = { version = "0.3.2", path = "../futures", default-features = false, features = ["std"] } +futures = { version = "0.3.3", path = "../futures", default-features = false, features = ["std"] } [features] default = ["std"] diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 1cb0201adb..7375b6d3b4 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures-util" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/futures-rs" @@ -32,12 +32,12 @@ bilock = [] read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"] [dependencies] -futures-core = { path = "../futures-core", version = "0.3.2", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.2", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.2", default-features = false, features = ["std"], optional = true } -futures-io = { path = "../futures-io", version = "0.3.2", default-features = false, features = ["std"], optional = true } -futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false, optional = true } -futures-macro = { path = "../futures-macro", version = "0.3.2", default-features = false, optional = true } +futures-core = { path = "../futures-core", version = "0.3.3", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.3", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.3", default-features = false, features = ["std"], optional = true } +futures-io = { path = "../futures-io", version = "0.3.3", default-features = false, features = ["std"], optional = true } +futures-sink = { path = "../futures-sink", version = "0.3.3", default-features = false, optional = true } +futures-macro = { path = "../futures-macro", version = "0.3.3", default-features = false, optional = true } proc-macro-hack = { version = "0.5.9", optional = true } proc-macro-nested = { version = "0.1.2", optional = true } slab = { version = "0.4", optional = true } @@ -47,8 +47,8 @@ tokio-io = { version = "0.1.9", optional = true } pin-utils = "0.1.0-alpha.4" [dev-dependencies] -futures = { path = "../futures", version = "0.3.2", features = ["async-await"] } -futures-test = { path = "../futures-test", version = "0.3.2" } +futures = { path = "../futures", version = "0.3.3", features = ["async-await"] } +futures-test = { path = "../futures-test", version = "0.3.3" } tokio = "0.1.11" [package.metadata.docs.rs] diff --git a/futures/Cargo.toml b/futures/Cargo.toml index 6abda8fd05..cc218af08c 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "futures" edition = "2018" -version = "0.3.2" +version = "0.3.3" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -19,18 +19,18 @@ categories = ["asynchronous"] travis-ci = { repository = "rust-lang/futures-rs" } [dependencies] -futures-core = { path = "../futures-core", version = "0.3.2", default-features = false } -futures-task = { path = "../futures-task", version = "0.3.2", default-features = false } -futures-channel = { path = "../futures-channel", version = "0.3.2", default-features = false, features = ["sink"] } -futures-executor = { path = "../futures-executor", version = "0.3.2", default-features = false, optional = true } -futures-io = { path = "../futures-io", version = "0.3.2", default-features = false } -futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false } -futures-util = { path = "../futures-util", version = "0.3.2", default-features = false, features = ["sink"] } +futures-core = { path = "../futures-core", version = "0.3.3", default-features = false } +futures-task = { path = "../futures-task", version = "0.3.3", default-features = false } +futures-channel = { path = "../futures-channel", version = "0.3.3", default-features = false, features = ["sink"] } +futures-executor = { path = "../futures-executor", version = "0.3.3", default-features = false, optional = true } +futures-io = { path = "../futures-io", version = "0.3.3", default-features = false } +futures-sink = { path = "../futures-sink", version = "0.3.3", default-features = false } +futures-util = { path = "../futures-util", version = "0.3.3", default-features = false, features = ["sink"] } [dev-dependencies] pin-utils = "0.1.0-alpha.4" -futures-executor = { path = "../futures-executor", version = "0.3.2", features = ["thread-pool"] } -futures-test = { path = "../futures-test", version = "0.3.2" } +futures-executor = { path = "../futures-executor", version = "0.3.3", features = ["thread-pool"] } +futures-test = { path = "../futures-test", version = "0.3.3" } tokio = "0.1.11" assert_matches = "1.3.0"