From 2502f19d934b092fc01bb7493eacbb16b4038bf3 Mon Sep 17 00:00:00 2001 From: David Barsky Date: Fri, 13 Oct 2023 13:55:37 -0400 Subject: [PATCH] chore: prepare tracing-attributes 0.1.27 (#2756) # 0.1.27 (October 13, 2023) ### Changed - Bump minimum version of proc-macro2 to 1.0.60 (#2732) - Generate less dead code for async block return type hint (#2709) ### Fixed - Fix a compilation error in `#[instrument]` when the `"log"` feature is enabled (#2599) --- tracing-attributes/CHANGELOG.md | 15 +++++++++++++++ tracing-attributes/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/tracing-attributes/CHANGELOG.md b/tracing-attributes/CHANGELOG.md index 6df517e856..3cb95f70fe 100644 --- a/tracing-attributes/CHANGELOG.md +++ b/tracing-attributes/CHANGELOG.md @@ -1,3 +1,18 @@ +# 0.1.27 (October 13, 2023) + +### Changed + +- Bump minimum version of proc-macro2 to 1.0.60 ([#2732]) +- Generate less dead code for async block return type hint ([#2709]) + +### Fixed + +- Fix a compilation error in `#[instrument]` when the `"log"` feature is enabled ([#2599]) + +[#2732]: https://github.com/tokio-rs/tracing/pull/2732 +[#2709]: https://github.com/tokio-rs/tracing/pull/2709 +[#2599]: https://github.com/tokio-rs/tracing/pull/2599 + # 0.1.26 (June 21th, 2023) This release of `tracing-attributes` fixes warnings due to `allow` attributes in diff --git a/tracing-attributes/Cargo.toml b/tracing-attributes/Cargo.toml index 9c126ad81b..5bac47a1ed 100644 --- a/tracing-attributes/Cargo.toml +++ b/tracing-attributes/Cargo.toml @@ -8,7 +8,7 @@ name = "tracing-attributes" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.26" +version = "0.1.27" authors = [ "Tokio Contributors ", "Eliza Weisman ",