Skip to content

Commit

Permalink
0.3.0-alpha.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Sep 11, 2018
1 parent e425aff commit 2b20489
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 33 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.3.0-alpha.6 - 2018-0910
* Replace usage of `crate` visibility with `pub(crate)` now that `crate` visibility is no longer included in the 2018 edition
* Remove newly-stabilized "edition" feature in Cargo.toml files

# 0.3.0-alpha.5 - 2018-09-03
* Revert usage of cargo crate renaming feature

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ a `#[no_std]` environment, use:

```toml
[dependencies]
futures-preview = { version = "0.3.0-alpha.5", default-features = false }
futures-preview = { version = "0.3.0-alpha.6", default-features = false }
```

# License
Expand Down
6 changes: 3 additions & 3 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-channel-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -19,8 +19,8 @@ std = ["futures-core-preview/std"]
default = ["std"]

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.5", default-features = true }
futures-preview = { path = "../futures", version = "0.3.0-alpha.6", default-features = true }
pin-utils = "0.1.0-alpha.2"
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-core-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
12 changes: 6 additions & 6 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-executor-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -19,13 +19,13 @@ std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futu
default = ["std"]

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false}
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.5", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false}
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false}
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.6", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false}
num_cpus = { version = "1.8.0", optional = true }
lazy_static = { version = "1.1.0", optional = true }
pin-utils = "0.1.0-alpha.2"

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5" }
futures-preview = { path = "../futures", version = "0.3.0-alpha.6" }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6" }
6 changes: 3 additions & 3 deletions futures-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-io-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -19,9 +19,9 @@ std = ["futures-core-preview/std", "iovec"]
default = ["std"]

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
iovec = { version = "0.1", optional = true }

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" }
futures-preview = { path = "../futures", version = "0.3.0-alpha.6" }
assert_matches = "1.3.0"
6 changes: 3 additions & 3 deletions futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-sink-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -20,5 +20,5 @@ default = ["std"]

[dependencies]
either = { version = "1.4", default-features = false, optional = true }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
2 changes: 1 addition & 1 deletion futures-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-test-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Wim Looman <wim@nemo157.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
14 changes: 7 additions & 7 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-util-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -23,16 +23,16 @@ bench = []
nightly = []

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.5", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.5", default-features = false}
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.6", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.6", default-features = false}
either = { version = "1.4", default-features = false }
slab = { version = "0.4", optional = true }
futures = { version = "0.1", optional = true }
tokio-executor = { version = "0.1.2", optional = true }
pin-utils = "0.1.0-alpha.2"

[dev-dependencies]
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.5" }
futures-preview = { path = "../futures", version = "0.3.0-alpha.6" }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.6" }
16 changes: 8 additions & 8 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-preview"
edition = "2018"
version = "0.3.0-alpha.5"
version = "0.3.0-alpha.6"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -23,16 +23,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" }
appveyor = { repository = "rust-lang-nursery/futures-rs" }

[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.5", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.5", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.5", default-features = false }
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.5", default-features = false }
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.6", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.6", default-features = false }
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.6", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.6", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.6", default-features = false }
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.6", default-features = false }

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

[features]
nightly = ["futures-util-preview/nightly"]
Expand Down

0 comments on commit 2b20489

Please sign in to comment.