diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index db60574653f..f1cfeaf3645 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,31 @@ +# 0.7.9 (September 20th, 2023) + +### Added + +- io: add passthrough `AsyncRead`/`AsyncWrite` to `InspectWriter`/`InspectReader` ([#5739]) +- task: add spawn blocking methods to `JoinMap` ([#5797]) +- io: pass through traits for `StreamReader` and `SinkWriter` ([#5941]) +- io: add `SyncIoBridge::into_inner` ([#5971]) + +### Fixed + +- sync: handle possibly dangling reference safely ([#5812]) +- util: fix broken intra-doc link ([#5849]) +- compat: fix clippy warnings ([#5891]) + +### Documented + +- codec: Specify the line ending of `LinesCodec` ([#5982]) + +[#5739]: https://github.com/tokio-rs/tokio/pull/5739 +[#5797]: https://github.com/tokio-rs/tokio/pull/5797 +[#5941]: https://github.com/tokio-rs/tokio/pull/5941 +[#5971]: https://github.com/tokio-rs/tokio/pull/5971 +[#5812]: https://github.com/tokio-rs/tokio/pull/5812 +[#5849]: https://github.com/tokio-rs/tokio/pull/5849 +[#5891]: https://github.com/tokio-rs/tokio/pull/5891 +[#5982]: https://github.com/tokio-rs/tokio/pull/5982 + # 0.7.8 (April 25th, 2023) This release bumps the MSRV of tokio-util to 1.56. diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 3e05a1c6239..524fba45f82 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-util" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-util-0.7.x" git tag. -version = "0.7.8" +version = "0.7.9" edition = "2021" rust-version = "1.56" authors = ["Tokio Contributors "]