diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 6df34c0c030..0d58f9737d9 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.3.0 (July 7, 2021) + +- macros: don't trigger `clippy::unwrap_used` ([#3926]) + +[#3926]: https://github.com/tokio-rs/tokio/pull/3926 + # 1.2.0 (May 14, 2021) - macros: forward input arguments in `#[tokio::test]` ([#3691]) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 875ceb62400..5399bc6c0f1 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.2.0" +version = "1.3.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.2.0/tokio_macros" +documentation = "https://docs.rs/tokio-macros/1.3.0/tokio_macros" description = """ Tokio's proc macros. """