diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 2189faa97..b30a84eb7 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.8.1 (November 29th, 2022) + +- macros: Pin Futures in #[tokio::test] to stack ([#5205]) +- macros: Reduce usage of last statement spans in proc-macros ([#5092]) +- macros: Improve the documentation for #[tokio::test] ([#4761]) + +[#5205]: https://github.com/tokio-rs/tokio/pull/5205 +[#5092]: https://github.com/tokio-rs/tokio/pull/5092 +[#4761]: https://github.com/tokio-rs/tokio/pull/4761 + # 1.8.0 (June 4th, 2022) - macros: always emit return statement ([#4636]) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 2b704a58c..d352db69d 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.8.0" +version = "1.8.1" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "]