Skip to content

Commit 2b20489

Browse files
committed
0.3.0-alpha.6 release
1 parent e425aff commit 2b20489

File tree

10 files changed

+37
-33
lines changed

10 files changed

+37
-33
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.3.0-alpha.6 - 2018-0910
2+
* Replace usage of `crate` visibility with `pub(crate)` now that `crate` visibility is no longer included in the 2018 edition
3+
* Remove newly-stabilized "edition" feature in Cargo.toml files
4+
15
# 0.3.0-alpha.5 - 2018-09-03
26
* Revert usage of cargo crate renaming feature
37

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ a `#[no_std]` environment, use:
4747

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

5353
# License

futures-channel/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-channel-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -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.5", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
2323

2424
[dev-dependencies]
25-
futures-preview = { path = "../futures", version = "0.3.0-alpha.5", default-features = true }
25+
futures-preview = { path = "../futures", version = "0.3.0-alpha.6", default-features = true }
2626
pin-utils = "0.1.0-alpha.2"

futures-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-core-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-executor/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-executor-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -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.5", default-features = false}
23-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.5", default-features = false}
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false}
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}
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.2"
2828

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

futures-io/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-io-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -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.5", default-features = false }
22+
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
2323
iovec = { version = "0.1", optional = true }
2424

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

futures-sink/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-sink-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -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.5", default-features = false }
24-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
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 }

futures-test/Cargo.toml

+1-1
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.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Wim Looman <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"

futures-util/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-util-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
@@ -23,16 +23,16 @@ bench = []
2323
nightly = []
2424

2525
[dependencies]
26-
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
27-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
28-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.5", default-features = false }
29-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.5", default-features = false}
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}
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.2"
3535

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

futures/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "futures-preview"
33
edition = "2018"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
@@ -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.5", default-features = false }
27-
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
28-
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.5", default-features = false }
29-
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.5", default-features = false }
30-
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.5", default-features = false }
31-
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.5", default-features = false }
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 }
3232

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

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

0 commit comments

Comments
 (0)