From 66c62a4b74f9da7be3198bb7ac77d8d18967d51e Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 25 Apr 2023 17:07:08 +0200 Subject: [PATCH] chore: prepare tokio-macros v2.1.0 (#5649) --- tokio-macros/CHANGELOG.md | 8 ++++++++ tokio-macros/Cargo.toml | 2 +- tokio/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md index 2acf402a24b..e9d58db3c6e 100644 --- a/tokio-macros/CHANGELOG.md +++ b/tokio-macros/CHANGELOG.md @@ -1,3 +1,11 @@ +# 2.1.0 (April 25th, 2023) + +- macros: fix typo in `#[tokio::test]` docs ([#5636]) +- macros: make entrypoints more efficient ([#5621]) + +[#5621]: https://github.com/tokio-rs/tokio/pull/5621 +[#5636]: https://github.com/tokio-rs/tokio/pull/5636 + # 2.0.0 (March 24th, 2023) This major release updates the dependency on the syn crate to 2.0.0, and diff --git a/tokio-macros/Cargo.toml b/tokio-macros/Cargo.toml index 291da3c8836..4ca789d5549 100644 --- a/tokio-macros/Cargo.toml +++ b/tokio-macros/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-macros" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-macros-1.x.y" git tag. -version = "2.0.0" +version = "2.1.0" edition = "2018" rust-version = "1.56" authors = ["Tokio Contributors "] diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 9b512694e4d..dbbe2d35ad6 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -97,7 +97,7 @@ stats = [] autocfg = "1.1" [dependencies] -tokio-macros = { version = "~2.0.0", path = "../tokio-macros", optional = true } +tokio-macros = { version = "~2.1.0", path = "../tokio-macros", optional = true } pin-project-lite = "0.2.0"