Skip to content

Commit 771513c

Browse files
committed
Stage 0.3.4
1 parent 6e81b1e commit 771513c

File tree

12 files changed

+47
-44
lines changed

12 files changed

+47
-44
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 0.3.4 - 2020-02-06
2+
* Fixed missing `Drop` for `UnboundedReceiver` (#2064)
3+
14
# 0.3.3 - 2020-02-04
25
* Fixed compatibility issue with pinned facade (#2062)
36

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ a `#[no_std]` environment, use:
5858

5959
```toml
6060
[dependencies]
61-
futures = { version = "0.3.3", default-features = false }
61+
futures = { version = "0.3.4", default-features = false }
6262
```
6363

6464
# License

futures-channel/Cargo.toml

Lines changed: 5 additions & 5 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.3"
4+
version = "0.3.4"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -24,12 +24,12 @@ 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.3", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.3", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.4", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.4", default-features = false, optional = true }
2929

3030
[dev-dependencies]
31-
futures = { path = "../futures", version = "0.3.3", default-features = true }
32-
futures-test = { path = "../futures-test", version = "0.3.3", default-features = true }
31+
futures = { path = "../futures", version = "0.3.4", default-features = true }
32+
futures-test = { path = "../futures-test", version = "0.3.4", default-features = true }
3333

3434
[package.metadata.docs.rs]
3535
all-features = true

futures-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.3"
4+
version = "0.3.4"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -25,7 +25,7 @@ cfg-target-has-atomic = []
2525
[dependencies]
2626

2727
[dev-dependencies]
28-
futures = { path = "../futures", version = "0.3.3" }
28+
futures = { path = "../futures", version = "0.3.4" }
2929

3030
[package.metadata.docs.rs]
3131
all-features = true

futures-executor/Cargo.toml

Lines changed: 5 additions & 5 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.3"
4+
version = "0.3.4"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -17,13 +17,13 @@ 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.3", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.3", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.3", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.4", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.4", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.4", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]
26-
futures = { path = "../futures", version = "0.3.3" }
26+
futures = { path = "../futures", version = "0.3.4" }
2727

2828
[package.metadata.docs.rs]
2929
all-features = true

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.3"
4+
version = "0.3.4"
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.3"
4+
version = "0.3.4"
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.3"
4+
version = "0.3.4"
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: 2 additions & 2 deletions
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.3"
4+
version = "0.3.4"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -25,7 +25,7 @@ cfg-target-has-atomic = []
2525
[dependencies]
2626

2727
[dev-dependencies]
28-
futures = { path = "../futures", version = "0.3.3" }
28+
futures = { path = "../futures", version = "0.3.4" }
2929

3030
[package.metadata.docs.rs]
3131
all-features = true

futures-test/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-test"
33
edition = "2018"
4-
version = "0.3.3"
4+
version = "0.3.4"
55
authors = ["Wim Looman <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
@@ -12,15 +12,15 @@ Common utilities for testing components built off futures-rs.
1212
"""
1313

1414
[dependencies]
15-
futures-core = { version = "0.3.3", path = "../futures-core", default-features = false }
16-
futures-task = { version = "0.3.3", path = "../futures-task", default-features = false }
17-
futures-io = { version = "0.3.3", path = "../futures-io", default-features = false }
18-
futures-util = { version = "0.3.3", path = "../futures-util", default-features = false }
19-
futures-executor = { version = "0.3.3", path = "../futures-executor", default-features = false }
15+
futures-core = { version = "0.3.4", path = "../futures-core", default-features = false }
16+
futures-task = { version = "0.3.4", path = "../futures-task", default-features = false }
17+
futures-io = { version = "0.3.4", path = "../futures-io", default-features = false }
18+
futures-util = { version = "0.3.4", path = "../futures-util", default-features = false }
19+
futures-executor = { version = "0.3.4", path = "../futures-executor", default-features = false }
2020
pin-utils = { version = "0.1.0-alpha.4", default-features = false }
2121

2222
[dev-dependencies]
23-
futures = { version = "0.3.3", path = "../futures", default-features = false, features = ["std"] }
23+
futures = { version = "0.3.4", path = "../futures", default-features = false, features = ["std"] }
2424

2525
[features]
2626
default = ["std"]

0 commit comments

Comments
 (0)