diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 633b43fbb..2189faa97 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,6 +1,14 @@ +# 1.8.0 (June 4th, 2022) + +- macros: always emit return statement ([#4636]) +- macros: support setting a custom crate name for `#[tokio::main]` and `#[tokio::test]` ([#4613]) + +[#4613]: https://github.com/tokio-rs/tokio/pull/4613 +[#4636]: https://github.com/tokio-rs/tokio/pull/4636 + # 1.7.0 (December 15th, 2021) -- macros: address remainging clippy::semicolon_if_nothing_returned warning ([#4252]) +- macros: address remaining `clippy::semicolon_if_nothing_returned` warning ([#4252]) [#4252]: https://github.com/tokio-rs/tokio/pull/4252 diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index b17844f37..2b704a58c 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-macros" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-macros-1.0.x" git tag. -version = "1.7.0" +version = "1.8.0" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "] diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 983173071..70b8e0cb9 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -79,8 +79,6 @@ task), as well as a number of bugfixes. ### Added -- macros: support setting a custom crate name for `#[tokio::main]` and - `#[tokio::test]` ([#4613]) - net: add `UdpSocket::peer_addr` ([#4611]) - net: add `try_read_buf` method for named pipes ([#4626]) - signal: add `SignalKind` `Hash`/`Eq` impls and `c_int` conversion ([#4540])