diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index cd16fccbfc9..0c405d7c5c0 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.5.1 (October 29th, 2021) + +- macros: fix type resolution error in `#[tokio::main]` ([#4176]) + +[#4176]: https://github.com/tokio-rs/tokio/pull/4176 + # 1.5.0 (October 13th, 2021) - macros: make tokio-macros attributes more IDE friendly ([#4162]) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 069b24f7bf8..309b704578a 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.5.0" +version = "1.5.1" 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.5.0/tokio_macros" +documentation = "https://docs.rs/tokio-macros/1.5.1/tokio_macros" description = """ Tokio's proc macros. """