chore: prepare tokio-macros 1.6.0 (#4239)

This commit is contained in:
Alice Ryhl 2021-11-16 09:54:07 +01:00 committed by GitHub
parent 884a9a4b18
commit 623c09c52c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
# 1.6.0 (November 16th, 2021)
- macros: fix mut patterns in `select!` macro ([#4211])
[#4211]: https://github.com/tokio-rs/tokio/pull/4211
# 1.5.1 (October 29th, 2021)
- macros: fix type resolution error in `#[tokio::main]` ([#4176])

View File

@ -6,13 +6,13 @@ name = "tokio-macros"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "tokio-macros-1.0.x" git tag.
version = "1.5.1"
version = "1.6.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-macros/1.5.1/tokio_macros"
documentation = "https://docs.rs/tokio-macros/1.6.0/tokio_macros"
description = """
Tokio's proc macros.
"""

View File

@ -87,7 +87,7 @@ test-util = ["rt", "sync", "time"]
time = []
[dependencies]
tokio-macros = { path = "../tokio-macros", optional = true }
tokio-macros = { version = "1.6.0", path = "../tokio-macros", optional = true }
pin-project-lite = "0.2.0"