Skip to content

Commit

Permalink
Stage 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Nov 7, 2019
1 parent fc5f44c commit 16afd7c
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 43 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.3.1 - 2019-11-7
* Fix signature of `LocalSpawn` trait (breaking change -- see #1959)

# 0.3.0 - 2019-11-5
* Stable release along with stable async/await!
* Added async/await to default features (#1953)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ a `#[no_std]` environment, use:

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

# License
Expand Down
10 changes: 5 additions & 5 deletions futures-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-channel"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -27,9 +27,9 @@ unstable = ["futures-core/unstable"]
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.0", default-features = false, optional = true }
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.1", default-features = false, optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.3.0", default-features = true }
futures-test = { path = "../futures-test", version = "0.3.0", default-features = true }
futures = { path = "../futures", version = "0.3.1", default-features = true }
futures-test = { path = "../futures-test", version = "0.3.1", default-features = true }
4 changes: 2 additions & 2 deletions futures-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-core"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -28,4 +28,4 @@ cfg-target-has-atomic = []
[dependencies]

[dev-dependencies]
futures = { path = "../futures", version = "0.3.0" }
futures = { path = "../futures", version = "0.3.1" }
10 changes: 5 additions & 5 deletions futures-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-executor"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -20,10 +20,10 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
thread-pool = ["std", "num_cpus"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.0", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.0", default-features = false }
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.1", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.1", default-features = false }
num_cpus = { version = "1.8.0", optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.3.0" }
futures = { path = "../futures", version = "0.3.1" }
2 changes: 1 addition & 1 deletion futures-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-io"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-macro"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-sink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-sink"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down
4 changes: 2 additions & 2 deletions futures-task/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-task"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -28,4 +28,4 @@ cfg-target-has-atomic = []
[dependencies]

[dev-dependencies]
futures = { path = "../futures", version = "0.3.0" }
futures = { path = "../futures", version = "0.3.1" }
14 changes: 7 additions & 7 deletions futures-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-test"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Wim Looman <wim@nemo157.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand All @@ -15,15 +15,15 @@ Common utilities for testing components built off futures-rs.
name = "futures_test"

[dependencies]
futures-core = { version = "0.3.0", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.0", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.0", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.0", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.0", path = "../futures-executor", default-features = false }
futures-core = { version = "0.3.1", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.1", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.1", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.1", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.1", path = "../futures-executor", default-features = false }
pin-utils = { version = "0.1.0-alpha.4", default-features = false }

[dev-dependencies]
futures = { version = "0.3.0", path = "../futures", default-features = false, features = ["std"] }
futures = { version = "0.3.1", path = "../futures", default-features = false, features = ["std"] }

[features]
default = ["std"]
Expand Down
18 changes: 9 additions & 9 deletions futures-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures-util"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
Expand Down Expand Up @@ -35,12 +35,12 @@ bilock = []
read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.0", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.0", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.0", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.0", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "0.3.0", default-features = false, optional = true }
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.1", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.1", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.1", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "0.3.1", default-features = false, optional = true }
proc-macro-hack = { version = "0.5.9", optional = true }
proc-macro-nested = { version = "0.1.2", optional = true }
slab = { version = "0.4", optional = true }
Expand All @@ -50,8 +50,8 @@ tokio-io = { version = "0.1.9", optional = true }
pin-utils = "0.1.0-alpha.4"

[dev-dependencies]
futures = { path = "../futures", version = "0.3.0", features = ["async-await"] }
futures-test = { path = "../futures-test", version = "0.3.0" }
futures = { path = "../futures", version = "0.3.1", features = ["async-await"] }
futures-test = { path = "../futures-test", version = "0.3.1" }
tokio = "0.1.11"

[package.metadata.docs.rs]
Expand Down
18 changes: 9 additions & 9 deletions futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "futures"
edition = "2018"
version = "0.3.0"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -22,17 +22,17 @@ name = "futures"
travis-ci = { repository = "rust-lang-nursery/futures-rs" }

[dependencies]
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.0", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.0", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.0", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.0", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.0", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.0", default-features = false, features = ["sink"] }
futures-core = { path = "../futures-core", version = "0.3.1", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.1", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.1", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.1", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.1", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.1", default-features = false, features = ["sink"] }

[dev-dependencies]
pin-utils = "0.1.0-alpha.4"
futures-test = { path = "../futures-test", version = "0.3.0" }
futures-test = { path = "../futures-test", version = "0.3.1" }
tokio = "0.1.11"
assert_matches = "1.3.0"

Expand Down

0 comments on commit 16afd7c

Please sign in to comment.