Skip to content

Commit 4ceafb3

Browse files
committed
Stage 0.3.5
1 parent 5b91728 commit 4ceafb3

File tree

24 files changed

+87
-70
lines changed

24 files changed

+87
-70
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 0.3.5 - 2020-05-08
2+
* Added `StreamExt::flat_map`.
3+
* Added `StreamExt::ready_chunks`.
4+
* Added `*_unpin` methods to `SinkExt`.
5+
* Added a `cancellation()` future to `oneshot::Sender`.
6+
* Added `reunite` method to `ReadHalf` and `WriteHalf`.
7+
* Added `Extend` implementations for `Futures(Un)Ordered` and `SelectAll`.
8+
* Added support for reexporting the `join!` and `select!` macros.
9+
* Added `no_std` support for the `pending!` and `poll!` macros.
10+
* Added `Send` and `Sync` support for `AssertUnmoved`.
11+
* Fixed a bug where `Shared` wasn't relinquishing control to the executor.
12+
* Removed the `Send` bound on the output of `RemoteHandle`.
13+
* Relaxed bounds on `FuturesUnordered`.
14+
* Reorganized internal tests to work under different `--feature`s.
15+
* Reorganized the bounds on `StreamExt::forward`.
16+
* Removed and replaced a large amount of internal `unsafe`.
17+
118
# 0.3.4 - 2020-02-06
219
* Fixed missing `Drop` for `UnboundedReceiver` (#2064)
320

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.4", default-features = false }
61+
futures = { version = "0.3.5", default-features = false }
6262
```
6363

6464
# License

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.0"
4+
version = "0.3.5"
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.0"
11+
documentation = "https://docs.rs/futures/0.3.5"
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.0", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.5", 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.0"
4+
version = "0.3.5"
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.0"
11+
documentation = "https://docs.rs/futures/0.3.5"
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.0", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.5", features = ["thread-pool"] }

futures-channel/Cargo.toml

Lines changed: 6 additions & 6 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.4"
4+
version = "0.3.5"
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.0"
9+
documentation = "https://docs.rs/futures-channel/0.3.5"
1010
description = """
1111
Channels for asynchronous communication using futures-rs.
1212
"""
@@ -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.4", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.4", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.5", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.5", default-features = false, optional = true }
2929

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

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

futures-channel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1919

20-
#![doc(html_root_url = "https://docs.rs/futures-channel/0.3.0")]
20+
#![doc(html_root_url = "https://docs.rs/futures-channel/0.3.5")]
2121

2222
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2323
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-core/Cargo.toml

Lines changed: 3 additions & 3 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.4"
4+
version = "0.3.5"
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.0"
9+
documentation = "https://docs.rs/futures-core/0.3.5"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""
@@ -25,7 +25,7 @@ cfg-target-has-atomic = []
2525
[dependencies]
2626

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

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

futures-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1313

14-
#![doc(html_root_url = "https://docs.rs/futures-core/0.3.0")]
14+
#![doc(html_root_url = "https://docs.rs/futures-core/0.3.5")]
1515

1616
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
1717
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-executor/Cargo.toml

Lines changed: 6 additions & 6 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.4"
4+
version = "0.3.5"
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.0"
9+
documentation = "https://docs.rs/futures-executor/0.3.5"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""
@@ -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.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 }
20+
futures-core = { path = "../futures-core", version = "0.3.5", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.5", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.5", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

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

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

futures-executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1414

15-
#![doc(html_root_url = "https://docs.rs/futures-executor/0.3.0")]
15+
#![doc(html_root_url = "https://docs.rs/futures-executor/0.3.5")]
1616

1717
#[cfg(feature = "std")]
1818
mod local_pool;

0 commit comments

Comments
 (0)