diff --git a/tokio-test/CHANGELOG.md b/tokio-test/CHANGELOG.md index d506bfc40..fe95e6b47 100644 --- a/tokio-test/CHANGELOG.md +++ b/tokio-test/CHANGELOG.md @@ -1,3 +1,21 @@ +# 0.4.5 (January 4th, 2026) + +### Added + +- test: add `io::Builder::name` for better panic messages ([#7212]) + +### Fixed + +- test: make `Spawn` forward `size_hint` ([#6607]) + +### Changed + +- test: remove unused `async-stream` and `bytes` dependencies ([#7214]) + +[#6607]: https://github.com/tokio-rs/tokio/pull/6607 +[#7212]: https://github.com/tokio-rs/tokio/pull/7212 +[#7214]: https://github.com/tokio-rs/tokio/pull/7214 + # 0.4.4 (March 14, 2024) - task: mark `Spawn` as `#[must_use]` ([#6371]) diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml index a3dcef06d..308f28f6d 100644 --- a/tokio-test/Cargo.toml +++ b/tokio-test/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-test" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-test-0.4.x" git tag. -version = "0.4.4" +version = "0.4.5" edition = "2021" rust-version = "1.71" authors = ["Tokio Contributors "]