Skip to content

Commit 9c6c9a7

Browse files
committed
Sync with 0.3.26
1 parent 562bb29 commit 9c6c9a7

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.3.26 - 2023-01-30
2+
3+
* Add `Either::as_pin_mut` and `Either::as_pin_ref` (#2691)
4+
* Add `Shared::ptr_eq` and `Shared::ptr_hash` (#2691)
5+
* Implement `FusedStream` for `Buffered` (#2676)
6+
* Implement `FusedStream` for all streams in `ReadyChunks` (#2693)
7+
* Fix bug in `FuturesOrdered::push_front` (#2664)
8+
* Remove `Fut::Output: Clone` bounds from some `Shared` methods (#2662)
9+
* Remove `T: Debug` bounds from `Debug` implementations of `mpsc` and `oneshot` types (#2666, #2667)
10+
111
# 0.3.25 - 2022-10-20
212

313
* Fix soundness issue in `join!` and `try_join!` macros (#2649)

futures-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-io"
3-
version = "0.3.25"
3+
version = "0.3.26"
44
edition = "2018"
55
rust-version = "1.36"
66
license = "MIT OR Apache-2.0"

futures-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Common utilities for testing components built off futures-rs.
1313
[dependencies]
1414
futures-core = { version = "=1.0.0-alpha.0", path = "../futures-core", default-features = false }
1515
futures-task = { version = "=0.4.0-alpha.0", path = "../futures-task", default-features = false }
16-
futures-io = { version = "0.3.25", path = "../futures-io", default-features = false }
16+
futures-io = { version = "0.3.26", path = "../futures-io", default-features = false }
1717
futures-util = { version = "=0.4.0-alpha.0", path = "../futures-util", default-features = false }
1818
futures-executor = { version = "=0.4.0-alpha.0", path = "../futures-executor", default-features = false }
1919
futures-sink = { version = "=0.4.0-alpha.0", path = "../futures-sink", default-features = false }

futures-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ write-all-vectored = ["io"]
3434
futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-features = false }
3535
futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false }
3636
futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["std"], optional = true }
37-
futures-io = { path = "../futures-io", version = "0.3.25", default-features = false, features = ["std"], optional = true }
37+
futures-io = { path = "../futures-io", version = "0.3.26", default-features = false, features = ["std"], optional = true }
3838
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false, optional = true }
3939
futures-macro = { path = "../futures-macro", version = "=0.4.0-alpha.0", default-features = false, optional = true }
4040
slab = { version = "0.4.2", optional = true }

futures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures-core = { path = "../futures-core", version = "=1.0.0-alpha.0", default-f
1919
futures-task = { path = "../futures-task", version = "=0.4.0-alpha.0", default-features = false }
2020
futures-channel = { path = "../futures-channel", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] }
2121
futures-executor = { path = "../futures-executor", version = "=0.4.0-alpha.0", default-features = false, optional = true }
22-
futures-io = { path = "../futures-io", version = "0.3.25", default-features = false }
22+
futures-io = { path = "../futures-io", version = "0.3.26", default-features = false }
2323
futures-sink = { path = "../futures-sink", version = "=0.4.0-alpha.0", default-features = false }
2424
futures-util = { path = "../futures-util", version = "=0.4.0-alpha.0", default-features = false, features = ["sink"] }
2525

0 commit comments

Comments
 (0)