Skip to content

Commit

Permalink
Stage 0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Apr 19, 2018
1 parent 9f8cb38 commit 42332a0
Show file tree
Hide file tree
Showing 19 changed files with 68 additions and 54 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 0.2.1 - 2018-4-19

* Add the `futures-stable` crate for working with immovable futures.
* Add async/await support behind the `nightly` feature gate.
* Add `Stream::for_each_concurrent`.

# 0.2.0 - 2018-4-6

* Separate out the futures crate into a number of separate crates which
are reexported by a single facade.
* Add a `&mut task::Context` parameter to `poll` methods. This type includes
access to a wakeup callback, task-local-data, and a default executor.
* Refactor the `Sink` trait.

# 0.1.17 - 2017-10-31

* Add a `close` method on `sink::Wait`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ First, add this to your `Cargo.toml`:

```toml
[dependencies]
futures = "0.2.0"
futures = "0.2.1"
```

Next, add this to your crate:
Expand All @@ -38,7 +38,7 @@ a `#[no_std]` environment, use:

```toml
[dependencies]
futures = { version = "0.2.0", default-features = false }
futures = { version = "0.2.1", default-features = false }
```

# License
Expand Down
8 changes: 4 additions & 4 deletions futures-async-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "futures-async-runtime"
version = "0.2.0"
version = "0.2.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
readme = "../README.md"
keywords = ["async"]
categories = ["asynchronous", "rust-patterns"]
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -14,12 +14,12 @@ Runtime for the async/await macros in the `futures` crate.
"""

[dependencies.futures-core]
version = "0.2.0"
version = "0.2.1"
path = "../futures-core"
default-features = false

[dependencies.futures-stable]
version = "0.2.0"
version = "0.2.1"
path = "../futures-stable"
default-features = false

Expand Down
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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -15,8 +15,8 @@ std = ["futures-core/std"]
default = ["std"]

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

[dev-dependencies]
futures = { path = "../futures", version = "0.2.0", default-features = true }
futures-executor = { path = "../futures-executor", version = "0.2.0", default-features = true }
futures = { path = "../futures", version = "0.2.1", default-features = true }
futures-executor = { path = "../futures-executor", version = "0.2.1", 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.0")]
#![doc(html_root_url = "https://docs.rs/futures-channel/0.2.1")]
#![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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/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.0")]
#![doc(html_root_url = "https://docs.rs/futures-core/0.2.1")]

#![cfg_attr(feature = "nightly", feature(cfg_target_has_atomic))]
#![cfg_attr(feature = "nightly", feature(pin))]
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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -15,12 +15,12 @@ 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.1", default-features = false}
futures-util = { path = "../futures-util", version = "0.2.1", default-features = false}
futures-channel = { path = "../futures-channel", version = "0.2.1", default-features = false}
num_cpus = { version = "1.0", optional = true }
lazy_static = { version = "1.0", optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.2.0" }
futures-channel = { path = "../futures-channel", version = "0.2.0" }
futures = { path = "../futures", version = "0.2.1" }
futures-channel = { path = "../futures-channel", version = "0.2.1" }
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.0")]
#![doc(html_root_url = "https://docs.rs/futures-executor/0.2.1")]

#[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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/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.1", default-features = false }
iovec = { version = "0.1", optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.2.0" }
futures = { path = "../futures", version = "0.2.1" }
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.0")]
#![doc(html_rnoot_url = "https://docs.rs/futures-io/0.2.1")]

macro_rules! if_std {
($($i:item)*) => ($(
Expand Down
2 changes: 1 addition & 1 deletion futures-macro-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-macro-async"
version = "0.2.0"
version = "0.2.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-macro-await/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "futures-macro-await"
version = "0.2.0"
version = "0.2.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -16,5 +16,5 @@ default = ["std"]

[dependencies]
either = { version = "1.4", default-features = false, optional = true }
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.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.1", 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.0")]
#![doc(html_root_url = "https://docs.rs/futures-sink/0.2.1")]

#[cfg(feature = "std")]
extern crate std;
Expand Down
6 changes: 3 additions & 3 deletions futures-stable/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "futures-stable"
description = "futures which support internal references"
version = "0.2.0"
version = "0.2.1"
authors = ["boats <boats@mozilla.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"

[dependencies.futures-core]
path = "../futures-core"
version = "0.2.0"
version = "0.2.1"
default-features = false

[dependencies.futures-executor]
path = "../futures-executor"
version = "0.2.0"
version = "0.2.1"
default-features = false

[features]
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.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -16,13 +16,13 @@ default = ["std", "futures-core/either", "futures-sink/either"]
bench = []

[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.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.1", default-features = false }
futures-io = { path = "../futures-io", version = "0.2.1", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.2.1", default-features = false}
either = { version = "1.4", default-features = false }

[dev-dependencies]
futures = { path = "../futures", version = "0.2.0" }
futures-executor = { path = "../futures-executor", version = "0.2.0" }
futures-channel = { path = "../futures-channel", version = "0.2.0" }
futures = { path = "../futures", version = "0.2.1" }
futures-executor = { path = "../futures-executor", version = "0.2.1" }
futures-channel = { path = "../futures-channel", version = "0.2.1" }
24 changes: 12 additions & 12 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "futures"
version = "0.2.0"
version = "0.2.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
readme = "../README.md"
keywords = ["futures", "async", "future"]
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -19,16 +19,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" }
appveyor = { repository = "rust-lang-nursery/futures-rs" }

[dependencies]
futures-async-runtime = { path = "../futures-async-runtime", version = "0.2.0", default-features = false }
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-stable = { path = "../futures-stable", version = "0.2.0", default-features = false }
futures-util = { path = "../futures-util", version = "0.2.0", default-features = false }
futures-macro-async = { path = "../futures-macro-async", version = "0.2.0", optional = true }
futures-macro-await = { path = "../futures-macro-await", version = "0.2.0", optional = true }
futures-async-runtime = { path = "../futures-async-runtime", version = "0.2.1", default-features = false }
futures-core = { path = "../futures-core", version = "0.2.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.1", default-features = false }
futures-executor = { path = "../futures-executor", version = "0.2.1", default-features = false }
futures-io = { path = "../futures-io", version = "0.2.1", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.2.1", default-features = false }
futures-stable = { path = "../futures-stable", version = "0.2.1", default-features = false }
futures-util = { path = "../futures-util", version = "0.2.1", default-features = false }
futures-macro-async = { path = "../futures-macro-async", version = "0.2.1", optional = true }
futures-macro-await = { path = "../futures-macro-await", version = "0.2.1", optional = true }

[features]
nightly = ["futures-core/nightly", "futures-stable/nightly", "futures-async-runtime/nightly", "futures-macro-async", "futures-macro-await", "futures-macro-async/nightly"]
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.0")]
#![doc(html_root_url = "https://docs.rs/futures/0.2.1")]

#![cfg_attr(feature = "nightly", feature(cfg_target_has_atomic))]
#![cfg_attr(feature = "nightly", feature(use_extern_macros))]
Expand Down

0 comments on commit 42332a0

Please sign in to comment.