Skip to content

Commit

Permalink
Merge pull request #844 from cramertj/0.2-alpha
Browse files Browse the repository at this point in the history
Prepare 0.2.0-alpha release
  • Loading branch information
alexcrichton committed Mar 5, 2018
2 parents ed2fdad + bff10ff commit c2c45cc
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 38 deletions.
8 changes: 4 additions & 4 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-channel"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand All @@ -15,8 +15,8 @@ std = ["futures-core/std"]
default = ["std"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.2", default-features = false }
futures-core = { path = "../futures-core", version = "0.2.0-alpha", default-features = false }

[dev-dependencies]
futures = { path = "../futures", version = "0.2", default-features = true }
futures-executor = { path = "../futures-executor", version = "0.2", default-features = true }
futures = { path = "../futures", version = "0.2.0-alpha", default-features = true }
futures-executor = { path = "../futures-executor", version = "0.2.0-alpha", default-features = true }
2 changes: 1 addition & 1 deletion futures-channel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! asynchronous tasks.

#![deny(missing_docs, missing_debug_implementations)]
#![doc(html_root_url = "https://docs.rs/futures-channel/0.2")]
#![doc(html_root_url = "https://docs.rs/futures-channel/0.2.0-alpha")]
#![no_std]

#[cfg(feature = "std")]
Expand Down
2 changes: 1 addition & 1 deletion futures-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-core"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#![no_std]
#![deny(missing_docs, missing_debug_implementations, warnings)]
#![doc(html_root_url = "https://docs.rs/futures-core/0.2")]
#![doc(html_root_url = "https://docs.rs/futures-core/0.2.0-alpha")]

#[macro_use]
#[cfg(feature = "std")]
Expand Down
12 changes: 6 additions & 6 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-executor"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand All @@ -15,11 +15,11 @@ std = ["num_cpus", "futures-core/std", "futures-util/std", "futures-channel/std"
default = ["std"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.2.0", default-features = false}
futures-util = { path = "../futures-util", version = "0.2.0", default-features = false}
futures-channel = { path = "../futures-channel", version = "0.2.0", default-features = false}
futures-core = { path = "../futures-core", version = "0.2.0-alpha", default-features = false}
futures-util = { path = "../futures-util", version = "0.2.0-alpha", default-features = false}
futures-channel = { path = "../futures-channel", version = "0.2.0-alpha", default-features = false}
num_cpus = { version = "1.0", optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.2", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2", default-features = false }
futures = { path = "../futures", version = "0.2.0-alpha", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.0-alpha", default-features = false }
2 changes: 1 addition & 1 deletion futures-executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#![no_std]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/futures-executor/0.2")]
#![doc(html_root_url = "https://docs.rs/futures-executor/0.2.0-alpha")]

#[cfg(feature = "std")]
#[macro_use]
Expand Down
6 changes: 3 additions & 3 deletions futures-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-io"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand All @@ -15,8 +15,8 @@ std = ["futures-core/std", "iovec"]
default = ["std"]

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

[dev-dependencies]
futures = { path = "../futures", version = "0.2" }
futures = { path = "../futures", version = "0.2.0-alpha" }
2 changes: 1 addition & 1 deletion futures-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#![no_std]
#![deny(missing_docs, missing_debug_implementations)]
#![doc(html_rnoot_url = "https://docs.rs/futures-io/0.2")]
#![doc(html_rnoot_url = "https://docs.rs/futures-io/0.2.0-alpha")]

macro_rules! if_std {
($($i:item)*) => ($(
Expand Down
6 changes: 3 additions & 3 deletions futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-sink"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand All @@ -15,5 +15,5 @@ std = ["futures-core/std", "futures-channel/std"]
default = ["std"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.2.0", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.0", default-features = false }
futures-core = { path = "../futures-core", version = "0.2.0-alpha", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.0-alpha", default-features = false }
2 changes: 1 addition & 1 deletion futures-sink/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#![no_std]
#![deny(missing_docs, missing_debug_implementations)]
#![doc(html_root_url = "https://docs.rs/futures-sink/0.2")]
#![doc(html_root_url = "https://docs.rs/futures-sink/0.2.0-alpha")]

#[cfg(feature = "std")]
extern crate std;
Expand Down
16 changes: 8 additions & 8 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-util"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/futures-rs"
Expand All @@ -15,13 +15,13 @@ std = ["futures-core/std", "futures-io/std", "futures-sink/std", "either/use_std
default = ["std", "futures-core/either"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.2.0", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.0", default-features = false }
futures-io = { path = "../futures-io", version = "0.2.0", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.2.0", default-features = false}
futures-core = { path = "../futures-core", version = "0.2.0-alpha", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.0-alpha", default-features = false }
futures-io = { path = "../futures-io", version = "0.2.0-alpha", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.2.0-alpha", default-features = false}
either = { version = "1.4", default-features = false }

[dev-dependencies]
futures = { path = "../futures", version = "0.2" }
futures-executor = { path = "../futures-executor", version = "0.2" }
futures-channel = { path = "../futures-channel", version = "0.2" }
futures = { path = "../futures", version = "0.2.0-alpha" }
futures-executor = { path = "../futures-executor", version = "0.2.0-alpha" }
futures-channel = { path = "../futures-channel", version = "0.2.0-alpha" }
14 changes: 7 additions & 7 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures"
version = "0.2.0"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -19,12 +19,12 @@ travis-ci = { repository = "alexcrichton/futures-rs" }
appveyor = { repository = "alexcrichton/futures-rs" }

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

[features]
std = ["futures-core/std", "futures-executor/std", "futures-io/std", "futures-sink/std", "futures-util/std"]
Expand Down
2 changes: 1 addition & 1 deletion futures/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! completion, but *do not block* the thread running them.

#![no_std]
#![doc(html_root_url = "https://docs.rs/futures/0.2")]
#![doc(html_root_url = "https://docs.rs/futures/0.2.0-alpha")]

extern crate futures_core;
extern crate futures_channel;
Expand Down

0 comments on commit c2c45cc

Please sign in to comment.