Skip to content

Commit aeda77d

Browse files
committed
Release 0.3.8
1 parent a570781 commit aeda77d

File tree

23 files changed

+78
-70
lines changed

23 files changed

+78
-70
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.3.8 - 2020-11-04
2+
* Switch proc-macros to use native `#[proc_macro]` at Rust 1.45+ (#2243)
3+
* Add `WeakShared` (#2169)
4+
* Add `TryStreamExt::try_buffered` (#2245)
5+
* Add `StreamExt::cycle` (#2252)
6+
* Implemented `Clone` for `stream::{Empty, Pending, Repeat, Iter}` (#2248, #2252)
7+
* Fix panic in some `TryStreamExt` combinators (#2250)
8+
19
# 0.3.7 - 2020-10-23
210
* Fixed unsoundness in `MappedMutexGuard` (#2240)
311
* Re-exported `TakeUntil` (#2235)

examples/functional/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "futures-example-functional"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]
99
repository = "https://github.com/rust-lang/futures-rs"
1010
homepage = "https://rust-lang.github.io/futures-rs"
11-
documentation = "https://docs.rs/futures/0.3.7"
11+
documentation = "https://docs.rs/futures/0.3.8"
1212
description = """
1313
An implementation of futures and streams featuring zero allocations,
1414
composability, and iterator-like interfaces.
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.7", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.8", features = ["thread-pool"] }

examples/imperative/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "futures-example-imperative"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]
99
repository = "https://github.com/rust-lang/futures-rs"
1010
homepage = "https://rust-lang.github.io/futures-rs"
11-
documentation = "https://docs.rs/futures/0.3.7"
11+
documentation = "https://docs.rs/futures/0.3.8"
1212
description = """
1313
An implementation of futures and streams featuring zero allocations,
1414
composability, and iterator-like interfaces.
@@ -17,4 +17,4 @@ categories = ["asynchronous"]
1717
publish = false
1818

1919
[dependencies]
20-
futures = { path = "../../futures", version = "0.3.7", features = ["thread-pool"] }
20+
futures = { path = "../../futures", version = "0.3.8", features = ["thread-pool"] }

futures-channel/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-channel"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-channel/0.3.7"
9+
documentation = "https://docs.rs/futures-channel/0.3.8"
1010
description = """
1111
Channels for asynchronous communication using futures-rs.
1212
"""
@@ -24,12 +24,12 @@ unstable = ["futures-core/unstable"]
2424
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"]
2525

2626
[dependencies]
27-
futures-core = { path = "../futures-core", version = "0.3.7", default-features = false }
28-
futures-sink = { path = "../futures-sink", version = "0.3.7", default-features = false, optional = true }
27+
futures-core = { path = "../futures-core", version = "0.3.8", default-features = false }
28+
futures-sink = { path = "../futures-sink", version = "0.3.8", default-features = false, optional = true }
2929

3030
[dev-dependencies]
31-
futures = { path = "../futures", version = "0.3.7", default-features = true }
32-
futures-test = { path = "../futures-test", version = "0.3.7", default-features = true }
31+
futures = { path = "../futures", version = "0.3.8", default-features = true }
32+
futures-test = { path = "../futures-test", version = "0.3.8", default-features = true }
3333

3434
[package.metadata.docs.rs]
3535
all-features = true

futures-channel/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2424

25-
#![doc(html_root_url = "https://docs.rs/futures-channel/0.3.7")]
25+
#![doc(html_root_url = "https://docs.rs/futures-channel/0.3.8")]
2626

2727
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2828
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-core"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-core/0.3.7"
9+
documentation = "https://docs.rs/futures-core/0.3.8"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""
@@ -25,7 +25,7 @@ cfg-target-has-atomic = []
2525
[dependencies]
2626

2727
[dev-dependencies]
28-
futures = { path = "../futures", version = "0.3.7" }
28+
futures = { path = "../futures", version = "0.3.8" }
2929

3030
[package.metadata.docs.rs]
3131
all-features = true

futures-core/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-core/0.3.7")]
19+
#![doc(html_root_url = "https://docs.rs/futures-core/0.3.8")]
2020

2121
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2222
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-executor/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-executor"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-executor/0.3.7"
9+
documentation = "https://docs.rs/futures-executor/0.3.8"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""
@@ -17,13 +17,13 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
1717
thread-pool = ["std", "num_cpus"]
1818

1919
[dependencies]
20-
futures-core = { path = "../futures-core", version = "0.3.7", default-features = false }
21-
futures-task = { path = "../futures-task", version = "0.3.7", default-features = false }
22-
futures-util = { path = "../futures-util", version = "0.3.7", default-features = false }
20+
futures-core = { path = "../futures-core", version = "0.3.8", default-features = false }
21+
futures-task = { path = "../futures-task", version = "0.3.8", default-features = false }
22+
futures-util = { path = "../futures-util", version = "0.3.8", default-features = false }
2323
num_cpus = { version = "1.8.0", optional = true }
2424

2525
[dev-dependencies]
26-
futures = { path = "../futures", version = "0.3.7" }
26+
futures = { path = "../futures", version = "0.3.8" }
2727

2828
[package.metadata.docs.rs]
2929
all-features = true

futures-executor/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1919

20-
#![doc(html_root_url = "https://docs.rs/futures-executor/0.3.7")]
20+
#![doc(html_root_url = "https://docs.rs/futures-executor/0.3.8")]
2121

2222
#![cfg_attr(docsrs, feature(doc_cfg))]
2323

futures-io/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-io"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-io/0.3.7"
9+
documentation = "https://docs.rs/futures-io/0.3.8"
1010
description = """
1111
The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
1212
"""

futures-io/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2626

27-
#![doc(html_root_url = "https://docs.rs/futures-io/0.3.7")]
27+
#![doc(html_root_url = "https://docs.rs/futures-io/0.3.8")]
2828

2929
#![cfg_attr(docsrs, feature(doc_cfg))]
3030

futures-macro/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-macro"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-macro/0.3.7"
9+
documentation = "https://docs.rs/futures-macro/0.3.8"
1010
description = """
1111
The futures-rs procedural macro implementations.
1212
"""

futures-macro/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1515

16-
#![doc(html_root_url = "https://docs.rs/futures-join-macro/0.3.7")]
16+
#![doc(html_root_url = "https://docs.rs/futures-join-macro/0.3.8")]
1717

1818
// Since https://github.com/rust-lang/cargo/pull/7700 `proc_macro` is part of the prelude for
1919
// proc-macro crates, but to support older compilers we still need this explicit `extern crate`.

futures-sink/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-sink"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-sink/0.3.7"
9+
documentation = "https://docs.rs/futures-sink/0.3.8"
1010
description = """
1111
The asynchronous `Sink` trait for the futures-rs library.
1212
"""

futures-sink/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-sink/0.3.7")]
19+
#![doc(html_root_url = "https://docs.rs/futures-sink/0.3.8")]
2020

2121
#[cfg(feature = "alloc")]
2222
extern crate alloc;

futures-task/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-task"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-task/0.3.7"
9+
documentation = "https://docs.rs/futures-task/0.3.8"
1010
description = """
1111
Tools for working with tasks.
1212
"""
@@ -26,7 +26,7 @@ cfg-target-has-atomic = []
2626
once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true }
2727

2828
[dev-dependencies]
29-
futures = { path = "../futures", version = "0.3.7" }
29+
futures = { path = "../futures", version = "0.3.8" }
3030

3131
[package.metadata.docs.rs]
3232
all-features = true

futures-task/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1818

19-
#![doc(html_root_url = "https://docs.rs/futures-task/0.3.7")]
19+
#![doc(html_root_url = "https://docs.rs/futures-task/0.3.8")]
2020

2121
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2222
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-test/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[package]
22
name = "futures-test"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Wim Looman <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-test/0.3.7"
9+
documentation = "https://docs.rs/futures-test/0.3.8"
1010
description = """
1111
Common utilities for testing components built off futures-rs.
1212
"""
1313

1414
[dependencies]
15-
futures-core = { version = "0.3.7", path = "../futures-core", default-features = false }
16-
futures-task = { version = "0.3.7", path = "../futures-task", default-features = false }
17-
futures-io = { version = "0.3.7", path = "../futures-io", default-features = false }
18-
futures-util = { version = "0.3.7", path = "../futures-util", default-features = false }
19-
futures-executor = { version = "0.3.7", path = "../futures-executor", default-features = false }
20-
futures-sink = { version = "0.3.7", path = "../futures-sink", default-features = false }
15+
futures-core = { version = "0.3.8", path = "../futures-core", default-features = false }
16+
futures-task = { version = "0.3.8", path = "../futures-task", default-features = false }
17+
futures-io = { version = "0.3.8", path = "../futures-io", default-features = false }
18+
futures-util = { version = "0.3.8", path = "../futures-util", default-features = false }
19+
futures-executor = { version = "0.3.8", path = "../futures-executor", default-features = false }
20+
futures-sink = { version = "0.3.8", path = "../futures-sink", default-features = false }
2121
pin-utils = { version = "0.1.0", default-features = false }
2222
once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true }
2323
pin-project = "1.0.1"
2424

2525
[dev-dependencies]
26-
futures = { version = "0.3.7", path = "../futures", default-features = false, features = ["std", "executor"] }
26+
futures = { version = "0.3.8", path = "../futures", default-features = false, features = ["std", "executor"] }
2727

2828
[features]
2929
default = ["std"]

futures-test/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1414

15-
#![doc(html_root_url = "https://docs.rs/futures-test/0.3.7")]
15+
#![doc(html_root_url = "https://docs.rs/futures-test/0.3.8")]
1616

1717
#[cfg(not(feature = "std"))]
1818
compile_error!("`futures-test` must have the `std` feature activated, this is a default-active feature");

futures-util/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "futures-util"
33
edition = "2018"
4-
version = "0.3.7"
4+
version = "0.3.8"
55
authors = ["Alex Crichton <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"
9-
documentation = "https://docs.rs/futures-util/0.3.7"
9+
documentation = "https://docs.rs/futures-util/0.3.8"
1010
description = """
1111
Common utilities and extension traits for the futures-rs library.
1212
"""
@@ -33,12 +33,12 @@ read-initializer = ["io", "futures-io/read-initializer", "futures-io/unstable"]
3333
write-all-vectored = ["io"]
3434

3535
[dependencies]
36-
futures-core = { path = "../futures-core", version = "0.3.7", default-features = false }
37-
futures-task = { path = "../futures-task", version = "0.3.7", default-features = false }
38-
futures-channel = { path = "../futures-channel", version = "0.3.7", default-features = false, features = ["std"], optional = true }
39-
futures-io = { path = "../futures-io", version = "0.3.7", default-features = false, features = ["std"], optional = true }
40-
futures-sink = { path = "../futures-sink", version = "0.3.7", default-features = false, optional = true }
41-
futures-macro = { path = "../futures-macro", version = "=0.3.7", default-features = false, optional = true }
36+
futures-core = { path = "../futures-core", version = "0.3.8", default-features = false }
37+
futures-task = { path = "../futures-task", version = "0.3.8", default-features = false }
38+
futures-channel = { path = "../futures-channel", version = "0.3.8", default-features = false, features = ["std"], optional = true }
39+
futures-io = { path = "../futures-io", version = "0.3.8", default-features = false, features = ["std"], optional = true }
40+
futures-sink = { path = "../futures-sink", version = "0.3.8", default-features = false, optional = true }
41+
futures-macro = { path = "../futures-macro", version = "=0.3.8", default-features = false, optional = true }
4242
proc-macro-hack = { version = "0.5.19", optional = true }
4343
proc-macro-nested = { version = "0.1.2", optional = true }
4444
slab = { version = "0.4.2", optional = true }
@@ -49,8 +49,8 @@ pin-utils = "0.1.0"
4949
pin-project = "1.0.1"
5050

5151
[dev-dependencies]
52-
futures = { path = "../futures", version = "0.3.7", features = ["async-await", "thread-pool"] }
53-
futures-test = { path = "../futures-test", version = "0.3.7" }
52+
futures = { path = "../futures", version = "0.3.8", features = ["async-await", "thread-pool"] }
53+
futures-test = { path = "../futures-test", version = "0.3.8" }
5454
tokio = "0.1.11"
5555

5656
[package.metadata.docs.rs]

futures-util/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2020

21-
#![doc(html_root_url = "https://docs.rs/futures-util/0.3.7")]
21+
#![doc(html_root_url = "https://docs.rs/futures-util/0.3.8")]
2222

2323
#![cfg_attr(docsrs, feature(doc_cfg))]
2424

0 commit comments

Comments
 (0)