Skip to content

Commit 1661bad

Browse files
authored
Release 0.3.9
1 parent 62e0328 commit 1661bad

File tree

13 files changed

+65
-55
lines changed

13 files changed

+65
-55
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1+
# 0.3.9 - 2021-01-08
2+
* Significantly improved compile time when `async-await` crate feature is disabled (#2273)
3+
* Added `stream::repeat_with` (#2279)
4+
* Added `StreamExt::unzip` (#2263)
5+
* Added `sink::unfold` (#2268)
6+
* Added `SinkExt::feed` (#2155)
7+
* Implemented `FusedFuture` for `oneshot::Receiver` (#2300)
8+
* Implemented `Clone` for `sink::With` (#2290)
9+
* Re-exported `MapOkOrElse`, `MapInto`, `OkInto`, `TryFlatten`, `WriteAllVectored` (#2275)
10+
111
# 0.3.8 - 2020-11-04
2-
* Switch proc-macros to use native `#[proc_macro]` at Rust 1.45+ (#2243)
3-
* Add `WeakShared` (#2169)
4-
* Add `TryStreamExt::try_buffered` (#2245)
5-
* Add `StreamExt::cycle` (#2252)
12+
* Switched proc-macros to use native `#[proc_macro]` at Rust 1.45+ (#2243)
13+
* Added `WeakShared` (#2169)
14+
* Added `TryStreamExt::try_buffered` (#2245)
15+
* Added `StreamExt::cycle` (#2252)
616
* Implemented `Clone` for `stream::{Empty, Pending, Repeat, Iter}` (#2248, #2252)
7-
* Fix panic in some `TryStreamExt` combinators (#2250)
17+
* Fixed panic in some `TryStreamExt` combinators (#2250)
818

919
# 0.3.7 - 2020-10-23
1020
* Fixed unsoundness in `MappedMutexGuard` (#2240)

examples/functional/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "futures-example-functional"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]
99
repository = "https://github.com/rust-lang/futures-rs"
1010
homepage = "https://rust-lang.github.io/futures-rs"
11-
documentation = "https://docs.rs/futures/0.3.8"
11+
documentation = "https://docs.rs/futures/0.3"
1212
description = """
1313
An implementation of futures and streams featuring zero allocations,
1414
composability, and iterator-like interfaces.
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

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

examples/imperative/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "futures-example-imperative"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]
99
repository = "https://github.com/rust-lang/futures-rs"
1010
homepage = "https://rust-lang.github.io/futures-rs"
11-
documentation = "https://docs.rs/futures/0.3.8"
11+
documentation = "https://docs.rs/futures/0.3"
1212
description = """
1313
An implementation of futures and streams featuring zero allocations,
1414
composability, and iterator-like interfaces.
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

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

futures-channel/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-channel"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-channel/0.3.8"
9+
documentation = "https://docs.rs/futures-channel/0.3"
1010
description = """
1111
Channels for asynchronous communication using futures-rs.
1212
"""
@@ -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.8", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.8", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.9", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.9", default-features = false, optional = true }
2929

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

futures-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-core"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-core/0.3.8"
9+
documentation = "https://docs.rs/futures-core/0.3"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""

futures-executor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-executor"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-executor/0.3.8"
9+
documentation = "https://docs.rs/futures-executor/0.3"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""
@@ -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.8", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.8", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.8", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.9", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.9", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.9", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]

futures-io/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-io"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-io/0.3.8"
9+
documentation = "https://docs.rs/futures-io/0.3"
1010
description = """
1111
The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
1212
"""

futures-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-macro"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
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"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-macro/0.3.8"
9+
documentation = "https://docs.rs/futures-macro/0.3"
1010
description = """
1111
The futures-rs procedural macro implementations.
1212
"""

futures-sink/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-sink"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-sink/0.3.8"
9+
documentation = "https://docs.rs/futures-sink/0.3"
1010
description = """
1111
The asynchronous `Sink` trait for the futures-rs library.
1212
"""

futures-task/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-task"
33
edition = "2018"
4-
version = "0.3.8"
4+
version = "0.3.9"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-task/0.3.8"
9+
documentation = "https://docs.rs/futures-task/0.3"
1010
description = """
1111
Tools for working with tasks.
1212
"""

0 commit comments

Comments
 (0)