chore: prepare tokio-macros v2.1.0 (#5649)

This commit is contained in:
Alice Ryhl 2023-04-25 17:07:08 +02:00 committed by GitHub
parent a86c052218
commit 66c62a4b74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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 <team@tokio.rs>"]

View File

@ -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"