Skip to content

Commit ab38fd2

Browse files
committed
Release 0.3.16
1 parent ac6a9cb commit ab38fd2

File tree

10 files changed

+35
-35
lines changed

10 files changed

+35
-35
lines changed

futures-channel/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -23,8 +23,8 @@ unstable = []
2323
cfg-target-has-atomic = []
2424

2525
[dependencies]
26-
futures-core = { path = "../futures-core", version = "0.3.15", default-features = false }
27-
futures-sink = { path = "../futures-sink", version = "0.3.15", default-features = false, optional = true }
26+
futures-core = { path = "../futures-core", version = "0.3.16", default-features = false }
27+
futures-sink = { path = "../futures-sink", version = "0.3.16", default-features = false, optional = true }
2828

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

futures-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-executor/Cargo.toml

Lines changed: 4 additions & 4 deletions
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
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.15", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.15", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.15", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.16", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.16", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.16", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]

futures-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
4+
version = "0.3.16"
55
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-sink/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

futures-test/Cargo.toml

Lines changed: 8 additions & 8 deletions
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.15"
4+
version = "0.3.16"
55
authors = ["Wim Looman <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -12,13 +12,13 @@ Common utilities for testing components built off futures-rs.
1212
"""
1313

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

futures-util/Cargo.toml

Lines changed: 7 additions & 7 deletions
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.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -39,12 +39,12 @@ cfg-target-has-atomic = []
3939
autocfg = "1"
4040

4141
[dependencies]
42-
futures-core = { path = "../futures-core", version = "0.3.15", default-features = false }
43-
futures-task = { path = "../futures-task", version = "0.3.15", default-features = false }
44-
futures-channel = { path = "../futures-channel", version = "0.3.15", default-features = false, features = ["std"], optional = true }
45-
futures-io = { path = "../futures-io", version = "0.3.15", default-features = false, features = ["std"], optional = true }
46-
futures-sink = { path = "../futures-sink", version = "0.3.15", default-features = false, optional = true }
47-
futures-macro = { path = "../futures-macro", version = "=0.3.15", default-features = false, optional = true }
42+
futures-core = { path = "../futures-core", version = "0.3.16", default-features = false }
43+
futures-task = { path = "../futures-task", version = "0.3.16", default-features = false }
44+
futures-channel = { path = "../futures-channel", version = "0.3.16", default-features = false, features = ["std"], optional = true }
45+
futures-io = { path = "../futures-io", version = "0.3.16", default-features = false, features = ["std"], optional = true }
46+
futures-sink = { path = "../futures-sink", version = "0.3.16", default-features = false, optional = true }
47+
futures-macro = { path = "../futures-macro", version = "=0.3.16", default-features = false, optional = true }
4848
proc-macro-hack = { version = "0.5.19", optional = true }
4949
proc-macro-nested = { version = "0.1.2", optional = true }
5050
slab = { version = "0.4.2", optional = true }

futures/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures"
33
edition = "2018"
4-
version = "0.3.15"
4+
version = "0.3.16"
55
authors = ["Alex Crichton <[email protected]>"]
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.15", default-features = false }
20-
futures-task = { path = "../futures-task", version = "0.3.15", default-features = false }
21-
futures-channel = { path = "../futures-channel", version = "0.3.15", default-features = false, features = ["sink"] }
22-
futures-executor = { path = "../futures-executor", version = "0.3.15", default-features = false, optional = true }
23-
futures-io = { path = "../futures-io", version = "0.3.15", default-features = false }
24-
futures-sink = { path = "../futures-sink", version = "0.3.15", default-features = false }
25-
futures-util = { path = "../futures-util", version = "0.3.15", default-features = false, features = ["sink"] }
19+
futures-core = { path = "../futures-core", version = "0.3.16", default-features = false }
20+
futures-task = { path = "../futures-task", version = "0.3.16", default-features = false }
21+
futures-channel = { path = "../futures-channel", version = "0.3.16", default-features = false, features = ["sink"] }
22+
futures-executor = { path = "../futures-executor", version = "0.3.16", default-features = false, optional = true }
23+
futures-io = { path = "../futures-io", version = "0.3.16", default-features = false }
24+
futures-sink = { path = "../futures-sink", version = "0.3.16", default-features = false }
25+
futures-util = { path = "../futures-util", version = "0.3.16", default-features = false, features = ["sink"] }
2626

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

0 commit comments

Comments
 (0)