From 0c8fcf4492276f18d71a170dffa81f83f8d162f2 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Tue, 8 Mar 2022 16:27:05 -0800 Subject: [PATCH] core: prepare to release 0.1.23 (#1977) # 0.1.23 (March 8, 2022) ### Changed - Removed `#[inline]` attributes from some `Dispatch` methods whose callers are now inlined ([#1974]) - Bumped minimum supported Rust version (MSRV) to Rust 1.49.0 ([#1913]) [#1913]: https://github.com/tokio-rs/tracing/pull/1913 [#1974]: https://github.com/tokio-rs/tracing/pull/1974 --- tracing-core/CHANGELOG.md | 11 +++++++++++ tracing-core/README.md | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/tracing-core/CHANGELOG.md b/tracing-core/CHANGELOG.md index b5b53f3623..c244c8c8c1 100644 --- a/tracing-core/CHANGELOG.md +++ b/tracing-core/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.1.23 (March 8, 2022) + +### Changed + +- Removed `#[inline]` attributes from some `Dispatch` methods whose callers are + now inlined ([#1974]) +- Bumped minimum supported Rust version (MSRV) to Rust 1.49.0 ([#1913]) + +[#1913]: https://github.com/tokio-rs/tracing/pull/1913 +[#1974]: https://github.com/tokio-rs/tracing/pull/1974 + # 0.1.22 (February 3, 2022) This release adds *experimental* support for recording structured field values diff --git a/tracing-core/README.md b/tracing-core/README.md index 56e488c854..4f7aaf2daf 100644 --- a/tracing-core/README.md +++ b/tracing-core/README.md @@ -16,9 +16,9 @@ Core primitives for application-level tracing. [Documentation][docs-url] | [Chat][discord-url] [crates-badge]: https://img.shields.io/crates/v/tracing-core.svg -[crates-url]: https://crates.io/crates/tracing-core/0.1.22 +[crates-url]: https://crates.io/crates/tracing-core/0.1.23 [docs-badge]: https://docs.rs/tracing-core/badge.svg -[docs-url]: https://docs.rs/tracing-core/0.1.22 +[docs-url]: https://docs.rs/tracing-core/0.1.23 [docs-master-badge]: https://img.shields.io/badge/docs-master-blue [docs-master-url]: https://tracing-rs.netlify.com/tracing_core [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg @@ -79,7 +79,7 @@ The following crate feature flags are available: ```toml [dependencies] - tracing-core = { version = "0.1.22", default-features = false } + tracing-core = { version = "0.1.23", default-features = false } ``` **Note**:`tracing-core`'s `no_std` support requires `liballoc`.