Skip to content

Commit 04b7233

Browse files
committed
Stage 0.3.0-alpha.10
1 parent b17f2d8 commit 04b7233

File tree

17 files changed

+64
-52
lines changed

17 files changed

+64
-52
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 0.3.0-alpha.10 - 2018-11-27
2+
* Revamped `select!` macro
3+
* Added `select_next_some` method for getting only the `Some` elements of a stream from `select!`
4+
* Added `futures::lock::Mutex` for async-aware synchronization.
5+
* Fixed bug converting `Pin<Box<_>>` to `StreamObj`
6+
* Improved performance of futures::channel
7+
* Improved performance and documentation of `Shared`
8+
* Add `new` method and more `derive`s to the `Compat` type
9+
* Enabled spawning on a borrowed threadpool
10+
* Re-added `join_all`
11+
* Added `try_concat`
12+
113
# 0.3.0-alpha.9 - 2018-10-18
214
* Fixed in response to new nightly handling of 2018 edition + `#![no_std]`
315

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</p>
1818

1919
<p align="center">
20-
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures/">
20+
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures/">
2121
Documentation
2222
</a> | <a href="https://rust-lang-nursery.github.io/futures-rs/">
2323
Website
@@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:
3030

3131
```toml
3232
[dependencies]
33-
futures-preview = "0.3.0-alpha.9"
33+
futures-preview = "0.3.0-alpha.10"
3434
```
3535

3636
Now, you can use futures-rs:
@@ -47,7 +47,7 @@ a `#[no_std]` environment, use:
4747

4848
```toml
4949
[dependencies]
50-
futures-preview = { version = "0.3.0-alpha.9", default-features = false }
50+
futures-preview = { version = "0.3.0-alpha.10", default-features = false }
5151
```
5252

5353
# License

futures-channel/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-channel-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.9"
4+
version = "0.3.0-alpha.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_channel"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_channel"
1010
description = """
1111
Channels for asynchronous communication using futures-rs.
1212
"""
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std"]
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.9", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.10", default-features = false }
2323

2424
[dev-dependencies]
25-
futures-preview = { path = "../futures", version = "0.3.0-alpha.9", default-features = true }
26-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.9", default-features = true }
25+
futures-preview = { path = "../futures", version = "0.3.0-alpha.10", default-features = true }
26+
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.10", default-features = true }
2727
pin-utils = "0.1.0-alpha.3"

futures-channel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#![warn(missing_docs, missing_debug_implementations)]
1111
#![deny(bare_trait_objects)]
1212

13-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_channel")]
13+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_channel")]
1414

1515
#[cfg(feature = "std")]
1616
mod lock;

futures-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ cargo-features = ["rename-dependency"]
33
[package]
44
name = "futures-core-preview"
55
edition = "2018"
6-
version = "0.3.0-alpha.9"
6+
version = "0.3.0-alpha.10"
77
authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_core"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_core"
1212
description = """
1313
The core traits and types in for the `futures` library.
1414
"""
@@ -25,4 +25,4 @@ nightly = []
2525
either = { version = "1.4", default-features = false, optional = true }
2626

2727
[dev-dependencies]
28-
futures-preview = { path = "../futures", version = "0.3.0-alpha.9" }
28+
futures-preview = { path = "../futures", version = "0.3.0-alpha.10" }

futures-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#![warn(missing_docs, missing_debug_implementations)]
99
#![deny(bare_trait_objects)]
1010

11-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_core")]
11+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_core")]
1212

1313
pub mod future;
1414
#[doc(hidden)] pub use self::future::{Future, FusedFuture, TryFuture};

futures-executor/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-executor-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.9"
4+
version = "0.3.0-alpha.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_executor"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_executor"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""
@@ -19,13 +19,13 @@ std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futu
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.9", default-features = false}
23-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.9", default-features = false}
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.9", default-features = false}
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.10", default-features = false}
23+
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.10", default-features = false}
24+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.10", default-features = false}
2525
num_cpus = { version = "1.8.0", optional = true }
2626
lazy_static = { version = "1.1.0", optional = true }
2727
pin-utils = "0.1.0-alpha.3"
2828

2929
[dev-dependencies]
30-
futures-preview = { path = "../futures", version = "0.3.0-alpha.9" }
31-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.9" }
30+
futures-preview = { path = "../futures", version = "0.3.0-alpha.10" }
31+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.10" }

futures-executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![warn(missing_docs, missing_debug_implementations)]
88
#![deny(bare_trait_objects)]
99

10-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_executor")]
10+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_executor")]
1111

1212
#[cfg(feature = "std")]
1313
mod local_pool;

futures-io/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-io-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.9"
4+
version = "0.3.0-alpha.10"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_io"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_io"
1010
description = """
1111
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
1212
"""
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std", "iovec"]
1919
default = ["std"]
2020

2121
[dependencies]
22-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.9", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.10", default-features = false }
2323
iovec = { version = "0.1", optional = true }
2424

2525
[dev-dependencies]
26-
futures-preview = { path = "../futures", version = "0.3.0-alpha.9" }
26+
futures-preview = { path = "../futures", version = "0.3.0-alpha.10" }
2727
assert_matches = "1.3.0"

futures-io/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![warn(missing_docs, missing_debug_implementations)]
1010
#![deny(bare_trait_objects)]
1111

12-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.9/futures_io")]
12+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.10/futures_io")]
1313

1414
#![feature(futures_api)]
1515

0 commit comments

Comments
 (0)