Skip to content

Commit c91f869

Browse files
authored
Release 0.3.13 (#2350)
1 parent c29a73a commit c91f869

File tree

11 files changed

+41
-34
lines changed

11 files changed

+41
-34
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.3.13 - 2021-02-23
2+
- Mitigated starvation issues in `FuturesUnordered` (#2333)
3+
- Fixed race with dropping `mpsc::Receiver` (#2304)
4+
- Added `Shared::{strong_count, weak_count}` (#2346)
5+
- Added `no_std` support for `task::noop_waker_ref` (#2332)
6+
- Implemented `Stream::size_hint` for `Either` (#2325)
7+
18
# 0.3.12 - 2021-01-15
29
* Fixed `Unpin` impl of `future::{MaybeDone, TryMaybeDone}` where trait bounds were accidentally added in 0.3.9. (#2317)
310

futures-channel/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-channel"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -24,8 +24,8 @@ unstable = ["futures-core/unstable"]
2424
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]
2525

2626
[dependencies]
27-
futures-core = { path = "../futures-core", version = "0.3.12", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false, optional = true }
2929

3030
[dev-dependencies]
3131
futures = { path = "../futures", default-features = true }

futures-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-core"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-executor/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-executor"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -17,9 +17,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
1717
thread-pool = ["std", "num_cpus"]
1818

1919
[dependencies]
20-
futures-core = { path = "../futures-core", version = "0.3.12", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.12", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.13", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]

futures-io/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-io"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-macro"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-sink/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-sink"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-task/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-task"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-test/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-test"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Wim Looman <wim@nemo157.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -12,12 +12,12 @@ Common utilities for testing components built off futures-rs.
1212
"""
1313

1414
[dependencies]
15-
futures-core = { version = "0.3.12", path = "../futures-core", default-features = false }
16-
futures-task = { version = "0.3.12", path = "../futures-task", default-features = false }
17-
futures-io = { version = "0.3.12", path = "../futures-io", default-features = false }
18-
futures-util = { version = "0.3.12", path = "../futures-util", default-features = false }
19-
futures-executor = { version = "0.3.12", path = "../futures-executor", default-features = false }
20-
futures-sink = { version = "0.3.12", path = "../futures-sink", default-features = false }
15+
futures-core = { version = "0.3.13", path = "../futures-core", default-features = false }
16+
futures-task = { version = "0.3.13", path = "../futures-task", default-features = false }
17+
futures-io = { version = "0.3.13", path = "../futures-io", default-features = false }
18+
futures-util = { version = "0.3.13", path = "../futures-util", default-features = false }
19+
futures-executor = { version = "0.3.13", path = "../futures-executor", default-features = false }
20+
futures-sink = { version = "0.3.13", path = "../futures-sink", default-features = false }
2121
pin-utils = { version = "0.1.0", default-features = false }
2222
pin-project = "1.0.1"
2323

futures-util/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-util"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -33,12 +33,12 @@ read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]
3333
write-all-vectored = ["io"]
3434

3535
[dependencies]
36-
futures-core = { path = "../futures-core", version = "0.3.12", default-features = false }
37-
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
38-
futures-channel = { path = "../futures-channel", version = "0.3.12", default-features = false, features = ["std"], optional = true }
39-
futures-io = { path = "../futures-io", version = "0.3.12", default-features = false, features = ["std"], optional = true }
40-
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false, optional = true }
41-
futures-macro = { path = "../futures-macro", version = "=0.3.12", default-features = false, optional = true }
36+
futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
37+
futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
38+
futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, features = ["std"], optional = true }
39+
futures-io = { path = "../futures-io", version = "0.3.13", default-features = false, features = ["std"], optional = true }
40+
futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false, optional = true }
41+
futures-macro = { path = "../futures-macro", version = "=0.3.13", default-features = false, optional = true }
4242
proc-macro-hack = { version = "0.5.19", optional = true }
4343
proc-macro-nested = { version = "0.1.2", optional = true }
4444
slab = { version = "0.4.2", optional = true }

futures/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures"
33
edition = "2018"
4-
version = "0.3.12"
4+
version = "0.3.13"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -16,13 +16,13 @@ composability, and iterator-like interfaces.
1616
categories = ["asynchronous"]
1717

1818
[dependencies]
19-
futures-core = { path = "../futures-core", version = "0.3.12", default-features = false }
20-
futures-task = { path = "../futures-task", version = "0.3.12", default-features = false }
21-
futures-channel = { path = "../futures-channel", version = "0.3.12", default-features = false, features = ["sink"] }
22-
futures-executor = { path = "../futures-executor", version = "0.3.12", default-features = false, optional = true }
23-
futures-io = { path = "../futures-io", version = "0.3.12", default-features = false }
24-
futures-sink = { path = "../futures-sink", version = "0.3.12", default-features = false }
25-
futures-util = { path = "../futures-util", version = "0.3.12", default-features = false, features = ["sink"] }
19+
futures-core = { path = "../futures-core", version = "0.3.13", default-features = false }
20+
futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
21+
futures-channel = { path = "../futures-channel", version = "0.3.13", default-features = false, features = ["sink"] }
22+
futures-executor = { path = "../futures-executor", version = "0.3.13", default-features = false, optional = true }
23+
futures-io = { path = "../futures-io", version = "0.3.13", default-features = false }
24+
futures-sink = { path = "../futures-sink", version = "0.3.13", default-features = false }
25+
futures-util = { path = "../futures-util", version = "0.3.13", default-features = false, features = ["sink"] }
2626

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

0 commit comments

Comments
 (0)