Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.3.18 #2523

Merged
merged 2 commits into from Nov 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# 0.3.18 - 2021-11-23

* Fix unusable `Sink` implementation on `stream::Scan` (#2499)
* Make `task::noop_waker_ref` available without `std` feature (#2505)
* Add async `LineWriter` (#2477)
* Remove dependency on `proc-macro-hack`. This raises MSRV of utility crates to 1.45. (#2520)

# 0.3.17 - 2021-08-30

* Use `FuturesOrdered` in `join_all` (#2412)
Expand Down
6 changes: 3 additions & 3 deletions futures-channel/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-channel"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand All @@ -22,8 +22,8 @@ unstable = []
cfg-target-has-atomic = []

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.17", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.17", default-features = false, optional = true }
futures-core = { path = "../futures-core", version = "0.3.18", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.18", default-features = false, optional = true }

[dev-dependencies]
futures = { path = "../futures", default-features = true }
Expand Down
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-core"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions futures-executor/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-executor"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand All @@ -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.17", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.17", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.17", default-features = false }
futures-core = { path = "../futures-core", version = "0.3.18", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.18", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.18", default-features = false }
num_cpus = { version = "1.8.0", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion futures-io/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-io"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion futures-macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-macro"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion futures-sink/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-sink"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion futures-task/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-task"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
16 changes: 8 additions & 8 deletions futures-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-test"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand All @@ -11,13 +11,13 @@ Common utilities for testing components built off futures-rs.
"""

[dependencies]
futures-core = { version = "0.3.17", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.17", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.17", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.17", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.17", path = "../futures-executor", default-features = false }
futures-sink = { version = "0.3.17", path = "../futures-sink", default-features = false }
futures-macro = { version = "=0.3.17", path = "../futures-macro", default-features = false }
futures-core = { version = "0.3.18", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.18", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.18", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.18", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.18", path = "../futures-executor", default-features = false }
futures-sink = { version = "0.3.18", path = "../futures-sink", default-features = false }
futures-macro = { version = "=0.3.18", path = "../futures-macro", default-features = false }
pin-utils = { version = "0.1.0", default-features = false }
pin-project = "1.0.1"

Expand Down
14 changes: 7 additions & 7 deletions futures-util/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures-util"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -35,12 +35,12 @@ write-all-vectored = ["io"]
cfg-target-has-atomic = []

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.17", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.17", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.17", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.17", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.17", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "=0.3.17", default-features = false, optional = true }
futures-core = { path = "../futures-core", version = "0.3.18", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.18", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.18", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.18", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.18", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "=0.3.18", 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" }
Expand Down
16 changes: 8 additions & 8 deletions futures/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "futures"
version = "0.3.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.45"
license = "MIT OR Apache-2.0"
Expand All @@ -15,13 +15,13 @@ composability, and iterator-like interfaces.
categories = ["asynchronous"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.17", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.17", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.17", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.17", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.17", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.17", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.17", default-features = false, features = ["sink"] }
futures-core = { path = "../futures-core", version = "0.3.18", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.18", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.18", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.18", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.18", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.18", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.18", default-features = false, features = ["sink"] }

[dev-dependencies]
futures-executor = { path = "../futures-executor", features = ["thread-pool"] }
Expand Down