From 46b43491933474942cbd82f07d55510ae66ab559 Mon Sep 17 00:00:00 2001 From: Noah Kennedy Date: Tue, 28 Sep 2021 16:59:58 -0500 Subject: [PATCH 1/2] chore: prepare tokio-macros 1.4.0 --- tokio-macros/CHANGELOG.md | 10 ++++++++++ tokio-macros/Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 0d58f9737d9..c698af37464 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.4.0 (September 29th, 2021) +### Changed + +- macros: run current_thread inside LocalSet ([#4027]) +- macros: explicitly relaxed clippy lint for `.expect()` in runtime entry macro ([#4030]) + +### Fixed + +- macros: fix invalid error messages in functions wrapped with `#[main]` or `#[test]` ([#4067]) + # 1.3.0 (July 7, 2021) - macros: don't trigger `clippy::unwrap_used` ([#3926]) diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 5399bc6c0f1..27c5b308c9f 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.3.0" +version = "1.4.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.3.0/tokio_macros" +documentation = "https://docs.rs/tokio-macros/1.4.0/tokio_macros" description = """ Tokio's proc macros. """ From 6c58ce2961c044fc03fb9b2a6affda5915164f63 Mon Sep 17 00:00:00 2001 From: Noah Kennedy Date: Wed, 29 Sep 2021 11:15:07 -0500 Subject: [PATCH 2/2] add links to PRs in CHANGELOG.md --- tokio-macros/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index c698af37464..ac325fc6b65 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -8,6 +8,10 @@ - macros: fix invalid error messages in functions wrapped with `#[main]` or `#[test]` ([#4067]) +[#4027]: https://github.com/tokio-rs/tokio/pull/4027 +[#4030]: https://github.com/tokio-rs/tokio/pull/4030 +[#4067]: https://github.com/tokio-rs/tokio/pull/4067 + # 1.3.0 (July 7, 2021) - macros: don't trigger `clippy::unwrap_used` ([#3926])