Skip to content

Commit

Permalink
Stage 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cramertj committed Feb 4, 2020
1 parent 1329276 commit b825f30
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 45 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,20 @@
# 0.3.2 - 2020-??-??
# 0.3.2 - 2020-02-03
* Improved buffering performance of `SplitSink` (#1969)
* Added `select_biased!` macro (#1976)
* Added `hash_receiver` method to mpsc channel (#1962)
* Added `stream::try_unfold` (#1977)
* Fixed bug with zero-size buffers in vectored IO (#1998)
* `AtomicWaker::new()` is now `const fn` (#2007)
* Fixed bug between threadpool and user park/unparking (#2010)
* Added `stream::Peakable::peek` (#2021)
* Added `StreamExt::scan` (#2044)
* Added impl of `AsyncRead`/`Write` for `BufReader`/`Writer` (#2033)
* Added impl of `Spawn` and `LocalSpawn` for `Arc<impl Spawn` and `Rc<impl Spawn>` (#2039)
* Fixed `Sync` issues with `FuturesUnordered` (#2054)
* Added `into_inner` method for `future::Ready` (#2055)
* Added `MappedMutexGuard` API (#2056)
* Mitigated starvation issues in `FuturesUnordered` (#2049)
* Added `TryFutureExt::map_ok_or_else` (#2058)

# 0.3.1 - 2019-11-7
* Fix signature of `LocalSpawn` trait (breaking change -- see #1959)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -58,7 +58,7 @@ a `#[no_std]` environment, use:

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

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

[dependencies]
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 }
futures-core = { path = "../futures-core", version = "0.3.2", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false, optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.3.1", default-features = true }
futures-test = { path = "../futures-test", version = "0.3.1", default-features = true }
futures = { path = "../futures", version = "0.3.2", default-features = true }
futures-test = { path = "../futures-test", version = "0.3.2", default-features = true }

[package.metadata.docs.rs]
all-features = true
4 changes: 2 additions & 2 deletions futures-core/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-core"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -25,7 +25,7 @@ cfg-target-has-atomic = []
[dependencies]

[dev-dependencies]
futures = { path = "../futures", version = "0.3.1" }
futures = { path = "../futures", version = "0.3.2" }

[package.metadata.docs.rs]
all-features = true
10 changes: 5 additions & 5 deletions futures-executor/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-executor"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -17,13 +17,13 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
thread-pool = ["std", "num_cpus"]

[dependencies]
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 }
futures-core = { path = "../futures-core", version = "0.3.2", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.2", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.2", default-features = false }
num_cpus = { version = "1.8.0", optional = true }

[dev-dependencies]
futures = { path = "../futures", version = "0.3.1" }
futures = { path = "../futures", version = "0.3.2" }

[package.metadata.docs.rs]
all-features = true
2 changes: 1 addition & 1 deletion futures-io/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-io"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-macro/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-macro"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
2 changes: 1 addition & 1 deletion futures-sink/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-sink"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand Down
4 changes: 2 additions & 2 deletions futures-task/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-task"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -25,7 +25,7 @@ cfg-target-has-atomic = []
[dependencies]

[dev-dependencies]
futures = { path = "../futures", version = "0.3.1" }
futures = { path = "../futures", version = "0.3.2" }

[package.metadata.docs.rs]
all-features = true
14 changes: 7 additions & 7 deletions futures-test/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures-test"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Wim Looman <wim@nemo157.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
Expand All @@ -12,15 +12,15 @@ Common utilities for testing components built off futures-rs.
"""

[dependencies]
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 }
futures-core = { version = "0.3.2", path = "../futures-core", default-features = false }
futures-task = { version = "0.3.2", path = "../futures-task", default-features = false }
futures-io = { version = "0.3.2", path = "../futures-io", default-features = false }
futures-util = { version = "0.3.2", path = "../futures-util", default-features = false }
futures-executor = { version = "0.3.2", path = "../futures-executor", default-features = false }
pin-utils = { version = "0.1.0-alpha.4", default-features = false }

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

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

[dependencies]
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 }
futures-core = { path = "../futures-core", version = "0.3.2", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.2", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.2", default-features = false, features = ["std"], optional = true }
futures-io = { path = "../futures-io", version = "0.3.2", default-features = false, features = ["std"], optional = true }
futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false, optional = true }
futures-macro = { path = "../futures-macro", version = "0.3.2", 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 @@ -47,8 +47,8 @@ tokio-io = { version = "0.1.9", optional = true }
pin-utils = "0.1.0-alpha.4"

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

[package.metadata.docs.rs]
Expand Down
20 changes: 10 additions & 10 deletions futures/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "futures"
edition = "2018"
version = "0.3.1"
version = "0.3.2"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -19,18 +19,18 @@ categories = ["asynchronous"]
travis-ci = { repository = "rust-lang/futures-rs" }

[dependencies]
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"] }
futures-core = { path = "../futures-core", version = "0.3.2", default-features = false }
futures-task = { path = "../futures-task", version = "0.3.2", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.3.2", default-features = false, features = ["sink"] }
futures-executor = { path = "../futures-executor", version = "0.3.2", default-features = false, optional = true }
futures-io = { path = "../futures-io", version = "0.3.2", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.3.2", default-features = false }
futures-util = { path = "../futures-util", version = "0.3.2", default-features = false, features = ["sink"] }

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

Expand Down

0 comments on commit b825f30

Please sign in to comment.