From 171724863db9c82929737d37bd93725e5a5f8af0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sat, 19 Dec 2020 17:03:42 +0100 Subject: [PATCH] chore: prepare tokio-macros v0.3.2 (#3295) --- tokio-macros/CHANGELOG.md | 9 +++++++++ tokio-macros/Cargo.toml | 4 ++-- tokio-macros/src/lib.rs | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 50dfc39ab..881da1e8d 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.3.2 (December 19, 2020) + +### Fixed + +- fix outdated macro documentation ([#3180]) +- add portability note to `tokio::main` ([#3199]) + # 0.3.1 (October 25, 2020) ### Fixed @@ -51,3 +58,5 @@ [#2177]: https://github.com/tokio-rs/tokio/pull/2177 [#2225]: https://github.com/tokio-rs/tokio/pull/2225 [#3038]: https://github.com/tokio-rs/tokio/pull/3038 +[#3180]: https://github.com/tokio-rs/tokio/pull/3180 +[#3199]: https://github.com/tokio-rs/tokio/pull/3199 diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 5a594e7a2..7f312e877 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio-macros" # - Cargo.toml # - Update CHANGELOG.md. # - Create "v0.3.x" git tag. -version = "0.3.1" +version = "0.3.2" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-macros/0.3.1/tokio_macros" +documentation = "https://docs.rs/tokio-macros/0.3.2/tokio_macros" description = """ Tokio's proc macros. """ diff --git a/tokio-macros/src/lib.rs b/tokio-macros/src/lib.rs index 0acfbca53..b07005fd0 100644 --- a/tokio-macros/src/lib.rs +++ b/tokio-macros/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-macros/0.3.1")] +#![doc(html_root_url = "https://docs.rs/tokio-macros/0.3.2")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations,