Skip to content

Commit 465f666

Browse files
committed
Release 0.3.12
1 parent a9161a9 commit 465f666

File tree

13 files changed

+41
-38
lines changed

13 files changed

+41
-38
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.12 - 2021-01-14
2+
* Fixed `Unpin` impl of `future::{MaybeDone, TryMaybeDone}` where trait bounds were accidentally added in 0.3.9. (#2317)
3+
14
# 0.3.11 - 2021-01-14
25
* Fixed heap buffer overflow in `AsyncReadExt::{read_to_end, read_to_string}` (#2314)
36

examples/functional/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-example-functional"
33
edition = "2018"
4-
version = "0.3.11"
4+
version = "0.3.12"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.11", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.12", features = ["thread-pool"] }

examples/imperative/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-example-imperative"
33
edition = "2018"
4-
version = "0.3.11"
4+
version = "0.3.12"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.11", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.12", features = ["thread-pool"] }

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.11"
4+
version = "0.3.12"
55
authors = ["Alex Crichton <[email protected]>"]
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.11", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.11", default-features = false, optional = true }
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 }
2929

3030
[dev-dependencies]
3131
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.11"
4+
version = "0.3.12"
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.11"
4+
version = "0.3.12"
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.11", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.11", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.11", default-features = false }
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 }
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.11"
4+
version = "0.3.12"
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.11"
4+
version = "0.3.12"
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.11"
4+
version = "0.3.12"
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.11"
4+
version = "0.3.12"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"

0 commit comments

Comments
 (0)