Skip to content

Commit f08d55e

Browse files
committed
Stage 0.3.0-alpha.7 release
1 parent 0012349 commit f08d55e

File tree

17 files changed

+54
-50
lines changed

17 files changed

+54
-50
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# 0.3.0-alpha.6 - 2018-0910
1+
# 0.3.0-alpha.7 - 2018-10-01
2+
* Update to new nightly which removes `Spawn` from `task::Context` and replaces `Context` with `LocalWaker`.
3+
* Add `Spawn` and `LocalSpawn` traits and `FutureObj` and `LocalFutureObj` types to `futures-core`.
4+
5+
# 0.3.0-alpha.6 - 2018-09-10
26
* Replace usage of `crate` visibility with `pub(crate)` now that `crate` visibility is no longer included in the 2018 edition
37
* Remove newly-stabilized "edition" feature in Cargo.toml files
48

README.md

Lines changed: 2 additions & 2 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.5/futures/">
20+
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures/">
2121
Documentation
2222
</a> | <a href="https://rust-lang-nursery.github.io/futures-rs/">
2323
Website
@@ -47,7 +47,7 @@ a `#[no_std]` environment, use:
4747

4848
```toml
4949
[dependencies]
50-
futures-preview = { version = "0.3.0-alpha.6", default-features = false }
50+
futures-preview = { version = "0.3.0-alpha.7", 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.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_channel"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/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.6", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false }
2323

2424
[dev-dependencies]
25-
futures-preview = { path = "../futures", version = "0.3.0-alpha.6", default-features = true }
26-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.6", default-features = true }
25+
futures-preview = { path = "../futures", version = "0.3.0-alpha.7", default-features = true }
26+
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.7", 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.5/futures_channel")]
13+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_channel")]
1414

1515
macro_rules! if_std {
1616
($($i:item)*) => ($(

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-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_core"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_core"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""

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.5/futures_core")]
11+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_core")]
1212

1313
#[doc(hidden)] pub use crate::future::Future;
1414
#[doc(hidden)] pub use crate::future::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.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_executor"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/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.6", default-features = false}
23-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.6", default-features = false}
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false}
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false}
23+
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.7", default-features = false}
24+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", 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.6" }
31-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6" }
30+
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" }
31+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7" }

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.5/futures_executor")]
10+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_executor")]
1111

1212
macro_rules! if_std {
1313
($($i:item)*) => ($(

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.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_io"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/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.6", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false }
2323
iovec = { version = "0.1", optional = true }
2424

2525
[dev-dependencies]
26-
futures-preview = { path = "../futures", version = "0.3.0-alpha.6" }
26+
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" }
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.5/futures_io")]
12+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_io")]
1313

1414
#![feature(futures_api)]
1515

futures-sink/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-sink-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_sink"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_sink"
1010
description = """
1111
The asynchronous `Sink` trait for the futures-rs library.
1212
"""
@@ -20,5 +20,5 @@ default = ["std"]
2020

2121
[dependencies]
2222
either = { version = "1.4", default-features = false, optional = true }
23-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
23+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false }
24+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false }

futures-sink/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
#![no_std]
77
#![warn(missing_docs, missing_debug_implementations)]
8-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/futures_sink")]
8+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_sink")]
99

1010
#![feature(pin, arbitrary_self_types, futures_api)]
1111

futures-test/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-test-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
55
authors = ["Wim Looman <wim@nemo157.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-util/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-util-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
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.5/futures_util"
9+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_util"
1010
description = """
1111
Common utilities and extension traits for the futures-rs library.
1212
"""
@@ -23,16 +23,16 @@ bench = []
2323
nightly = []
2424

2525
[dependencies]
26-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
27-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
28-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.6", default-features = false }
29-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.6", default-features = false}
26+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false }
27+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false }
28+
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.7", default-features = false }
29+
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.7", default-features = false}
3030
either = { version = "1.4", default-features = false }
3131
slab = { version = "0.4", optional = true }
3232
futures = { version = "0.1", optional = true }
3333
tokio-executor = { version = "0.1.2", optional = true }
3434
pin-utils = "0.1.0-alpha.3"
3535

3636
[dev-dependencies]
37-
futures-preview = { path = "../futures", version = "0.3.0-alpha.6" }
38-
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.6" }
37+
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" }
38+
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.7" }

futures-util/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.5/futures_util")]
13+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_util")]
1414

1515
macro_rules! if_std {
1616
($($i:item)*) => ($(

futures/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "futures-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
55
authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]
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.5/futures"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures"
1212
description = """
1313
An implementation of futures and streams featuring zero allocations,
1414
composability, and iterator-like interfaces.
@@ -23,16 +23,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" }
2323
appveyor = { repository = "rust-lang-nursery/futures-rs" }
2424

2525
[dependencies]
26-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
27-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
28-
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.6", default-features = false }
29-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.6", default-features = false }
30-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.6", default-features = false }
31-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.6", default-features = false }
26+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false }
27+
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false }
28+
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.7", default-features = false }
29+
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.7", default-features = false }
30+
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.7", default-features = false }
31+
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.7", default-features = false }
3232

3333
[dev-dependencies]
3434
pin-utils = "0.1.0-alpha.3"
35-
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.6", default-features = false }
35+
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.7", default-features = false }
3636

3737
[features]
3838
nightly = ["futures-util-preview/nightly"]

futures/src/lib.rs

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

31-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/futures")]
31+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures")]
3232

3333
#![cfg_attr(feature = "nightly", feature(cfg_target_has_atomic))]
3434

0 commit comments

Comments
 (0)