diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index a490cd79983..613da1b2ebf 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.6.7 (May 14, 2021) + +### Added + +- udp: make `UdpFramed` take `Borrow` ([#3451]) +- compat: implement `AsRawFd`/`AsRawHandle` for `Compat` ([#3765]) + +[#3451]: https://github.com/tokio-rs/tokio/pull/3451 +[#3765]: https://github.com/tokio-rs/tokio/pull/3765 + # 0.6.6 (April 12, 2021) ### Added diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 638e1602d74..e589c20dbf8 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -6,13 +6,13 @@ name = "tokio-util" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-util-0.6.x" git tag. -version = "0.6.6" +version = "0.6.7" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-util/0.6.6/tokio_util" +documentation = "https://docs.rs/tokio-util/0.6.7/tokio_util" description = """ Additional utilities for working with Tokio. """