diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 6760b1713c5..6df34c0c030 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.2.0 (May 14, 2021) + +- macros: forward input arguments in `#[tokio::test]` ([#3691]) +- macros: improve diagnostics on type mismatch ([#3766]) +- macros: various error message improvements ([#3677]) + +[#3677]: https://github.com/tokio-rs/tokio/pull/3677 +[#3691]: https://github.com/tokio-rs/tokio/pull/3691 +[#3766]: https://github.com/tokio-rs/tokio/pull/3766 + # 1.1.0 (February 5, 2021) - add `start_paused` option to macros ([#3492]) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 7ab38dc2189..875ceb62400 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -6,13 +6,13 @@ name = "tokio-macros" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-macros-1.0.x" git tag. -version = "1.1.0" +version = "1.2.0" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-macros/1.1.0/tokio_macros" +documentation = "https://docs.rs/tokio-macros/1.2.0/tokio_macros" description = """ Tokio's proc macros. """