From bff10ffb7b808e738056d92dd3f01fe265d9c3d2 Mon Sep 17 00:00:00 2001 From: Taylor Cramer Date: Mon, 5 Mar 2018 12:53:23 -0800 Subject: [PATCH] Prepare 0.2.0-alpha release --- futures-channel/Cargo.toml | 8 ++++---- futures-channel/src/lib.rs | 2 +- futures-core/Cargo.toml | 2 +- futures-core/src/lib.rs | 2 +- futures-executor/Cargo.toml | 12 ++++++------ futures-executor/src/lib.rs | 2 +- futures-io/Cargo.toml | 6 +++--- futures-io/src/lib.rs | 2 +- futures-sink/Cargo.toml | 6 +++--- futures-sink/src/lib.rs | 2 +- futures-util/Cargo.toml | 16 ++++++++-------- futures/Cargo.toml | 14 +++++++------- futures/src/lib.rs | 2 +- 13 files changed, 38 insertions(+), 38 deletions(-) diff --git a/futures-channel/Cargo.toml b/futures-channel/Cargo.toml index 0ba7ac3266..2f96deb810 100644 --- a/futures-channel/Cargo.toml +++ b/futures-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-channel" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" @@ -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 } diff --git a/futures-channel/src/lib.rs b/futures-channel/src/lib.rs index 05620f31c5..900b35cbae 100644 --- a/futures-channel/src/lib.rs +++ b/futures-channel/src/lib.rs @@ -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")] diff --git a/futures-core/Cargo.toml b/futures-core/Cargo.toml index 3b627feca2..74cbaff166 100644 --- a/futures-core/Cargo.toml +++ b/futures-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-core" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" diff --git a/futures-core/src/lib.rs b/futures-core/src/lib.rs index edef417dd4..323f099f79 100644 --- a/futures-core/src/lib.rs +++ b/futures-core/src/lib.rs @@ -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")] diff --git a/futures-executor/Cargo.toml b/futures-executor/Cargo.toml index ac334f13f0..7d609dd1ed 100644 --- a/futures-executor/Cargo.toml +++ b/futures-executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-executor" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" @@ -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 } diff --git a/futures-executor/src/lib.rs b/futures-executor/src/lib.rs index c27a7a175a..8c7b6e2800 100644 --- a/futures-executor/src/lib.rs +++ b/futures-executor/src/lib.rs @@ -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] diff --git a/futures-io/Cargo.toml b/futures-io/Cargo.toml index ad058aefd0..7b9139140f 100644 --- a/futures-io/Cargo.toml +++ b/futures-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-io" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" @@ -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" } diff --git a/futures-io/src/lib.rs b/futures-io/src/lib.rs index 43744a4a8e..3ca863a20b 100644 --- a/futures-io/src/lib.rs +++ b/futures-io/src/lib.rs @@ -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)*) => ($( diff --git a/futures-sink/Cargo.toml b/futures-sink/Cargo.toml index d8dda6a513..dfe13c9621 100644 --- a/futures-sink/Cargo.toml +++ b/futures-sink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-sink" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" @@ -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 } diff --git a/futures-sink/src/lib.rs b/futures-sink/src/lib.rs index 161c0b9f73..e903c39566 100644 --- a/futures-sink/src/lib.rs +++ b/futures-sink/src/lib.rs @@ -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; diff --git a/futures-util/Cargo.toml b/futures-util/Cargo.toml index 3daabe5def..ed7b9dec65 100644 --- a/futures-util/Cargo.toml +++ b/futures-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures-util" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/futures-rs" @@ -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" } diff --git a/futures/Cargo.toml b/futures/Cargo.toml index b666ec6402..f613fa3822 100644 --- a/futures/Cargo.toml +++ b/futures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "futures" -version = "0.2.0" +version = "0.2.0-alpha" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" readme = "README.md" @@ -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"] diff --git a/futures/src/lib.rs b/futures/src/lib.rs index 3096ffe07b..b71649361a 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -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;