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.13 #2350

Merged
merged 3 commits into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.3.12 - 2021-02-20
taiki-e marked this conversation as resolved.
Show resolved Hide resolved
- Mitigated starvation issues in `FuturesUnordered` (#2333)
- Fixed race with dropping `mpsc::Receiver` (#2304)
- Added `Shared::{strong_count, weak_count}` (#2346)
- Added `no_std` support for `task::noop_waker_ref` (#2332)
- Implemented `Stream::size_hint` for `Either` (#2325)

# 0.3.12 - 2021-01-15
* Fixed `Unpin` impl of `future::{MaybeDone, TryMaybeDone}` where trait bounds were accidentally added in 0.3.9. (#2317)

Expand Down
6 changes: 3 additions & 3 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-channel"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -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.12", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false, optional = true }
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 }

[dev-dependencies]
futures = { path = "../futures", default-features = true }
Expand Down
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-core"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
8 changes: 4 additions & 4 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-executor"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -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.12", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.12", default-features = false }
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 }
num_cpus = { version = "1.8.0", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion futures-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-io"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-macro"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-sink"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-task/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-task"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
14 changes: 7 additions & 7 deletions futures-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-test"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Wim Looman <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -12,12 +12,12 @@ Common utilities for testing components built off futures-rs.
"""

[dependencies]
futures-core = { version = "0.3.12", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.12", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.12", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.12", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.12", path = "../futures-executor", default-features = false }
futures-sink = { version = "0.3.12", path = "../futures-sink", default-features = false }
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 }
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-util"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down Expand Up @@ -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.12", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.12", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.12", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "=0.3.12", default-features = false, optional = true }
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 }
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 }
Expand Down
16 changes: 8 additions & 8 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures"
edition = "2018"
version = "0.3.12"
version = "0.3.13"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -16,13 +16,13 @@ composability, and iterator-like interfaces.
categories = ["asynchronous"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.12", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.12", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.12", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.12", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.12", default-features = false, features = ["sink"] }
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"] }

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