Skip to content

Commit 0fbab45

Browse files
taiki-ecramertj
authored andcommitted
Prepare 0.3.0-alpha.16
1 parent b34d519 commit 0fbab45

File tree

20 files changed

+75
-66
lines changed

20 files changed

+75
-66
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1+
# 0.3.0-alpha.16 - 2019-5-10
2+
* Updated to new nightly `async_await`.
3+
* Changed `AsyncRead::poll_vectored_read` and `AsyncWrite::poll_vectored_write` to use
4+
stabilized `std::io::{IoSlice, IoSliceMut}` instead of `iovec::IoVec`, and renamed to
5+
`AsyncRead::poll_read_vectored` and `AsyncWrite::poll_write_vectored`.
6+
* Added `LocalBoxFuture` and `FutureExt::boxed_local`.
7+
* Added `TryStreamExt::{try_filter, inspect_ok, inspect_err}`.
8+
* Added `try_future::select_ok`.
9+
* Added `AsyncBufReadExt::{read_line, lines}`.
10+
* Added `io::BufReader`.
11+
112
# 0.3.0-alpha.15 - 2019-4-26
213
* Updated to stabilized `futures_api`.
314
* Removed `StreamObj`, cautioned against usage of `FutureObj`.
415
* Changed `StreamExt::select` to a function.
516
* Added `AsyncBufRead` and `AsyncSeek` traits.
6-
* Expanded trait impls to include more pinned pointers and ?Sized types.
17+
* Expanded trait impls to include more pinned pointers and ?Sized types.
718
* Added `future::Fuse::terminated` constructor.
819
* Added `never_error` combinator.
920
* Added `StreamExt::enumerate`.

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.15/futures/">
20+
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/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.15"
33+
futures-preview = "0.3.0-alpha.16"
3434
```
3535

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

5050
```toml
5151
[dependencies]
52-
futures-preview = { version = "=0.3.0-alpha.15", default-features = false }
52+
futures-preview = { version = "=0.3.0-alpha.16", default-features = false }
5353
```
5454

5555
# 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.15"
4+
version = "0.3.0-alpha.16"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.15/futures_channel"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/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.15", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.16", default-features = false }
2323

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

futures-channel/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, rust_2018_idioms)]
99
#![warn(clippy::all)]
1010

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

1313
#[cfg(feature = "std")]
1414
mod lock;

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-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.15"
4+
version = "0.3.0-alpha.16"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.15/futures_core"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/futures_core"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""
@@ -24,4 +24,4 @@ alloc = []
2424
[dependencies]
2525

2626
[dev-dependencies]
27-
futures-preview = { path = "../futures", version = "=0.3.0-alpha.15" }
27+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.16" }

futures-core/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, rust_2018_idioms)]
88
#![warn(clippy::all)]
99

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

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

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.15"
4+
version = "0.3.0-alpha.16"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.15/futures_executor"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/futures_executor"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""
@@ -19,12 +19,12 @@ 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.15", default-features = false}
23-
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.15", default-features = false}
24-
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.15", default-features = false}
22+
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.16", default-features = false}
23+
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.16", default-features = false}
24+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.16", default-features = false}
2525
num_cpus = { version = "1.8.0", optional = true }
2626
pin-utils = "0.1.0-alpha.4"
2727

2828
[dev-dependencies]
29-
futures-preview = { path = "../futures", version = "=0.3.0-alpha.15" }
30-
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.15" }
29+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.16" }
30+
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.16" }

futures-executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
66
#![warn(clippy::all)]
77

8-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.15/futures_executor")]
8+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/futures_executor")]
99

1010
#[cfg(feature = "std")]
1111
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.15"
4+
version = "0.3.0-alpha.16"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
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.15/futures_io"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.16/futures_io"
1010
description = """
1111
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
1212
"""
@@ -19,8 +19,8 @@ std = ["futures-core-preview/std"]
1919
default = ["std"]
2020

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

2424
[dev-dependencies]
25-
futures-preview = { path = "../futures", version = "=0.3.0-alpha.15" }
25+
futures-preview = { path = "../futures", version = "=0.3.0-alpha.16" }
2626
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, rust_2018_idioms)]
1010
#![warn(clippy::all)]
1111

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

1414
#[cfg(feature = "std")]
1515
mod if_std {

0 commit comments

Comments
 (0)