From e4485640e7fee390544a7c358d2d3df948462feb Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Sun, 12 Sep 2021 15:29:10 -0700 Subject: [PATCH] core: prepare to release 0.1.20 (#1554) # 0.1.20 (September 12, 2021) This release adds support for `f64` as one of the `tracing-core` primitive field values, allowing floating-point values to be recorded as typed values rather than with `fmt::Debug`. Additionally, it adds `NoSubscriber`, a `Subscriber` implementation that does nothing. ### Added - **subscriber**: `NoSubscriber`, a no-op `Subscriber` implementation ([#1549]) - **field**: Added `Visit::record_f64` and support for recording floating-point values ([#1507]) Thanks to new contributors @jsgf and @maxburke for contributing to this release! [#1549]: https://github.com/tokio-rs/tracing/pull/1549 [#1507]: https://github.com/tokio-rs/tracing/pull/1507 --- tracing-core/CHANGELOG.md | 20 ++++++++++++++++++++ tracing-core/README.md | 6 +++--- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/tracing-core/CHANGELOG.md b/tracing-core/CHANGELOG.md index e331049f17..b2d36d1aab 100644 --- a/tracing-core/CHANGELOG.md +++ b/tracing-core/CHANGELOG.md @@ -1,3 +1,23 @@ +# 0.1.20 (September 12, 2021) + +This release adds support for `f64` as one of the `tracing-core` +primitive field values, allowing floating-point values to be recorded as +typed values rather than with `fmt::Debug`. Additionally, it adds +`NoSubscriber`, a `Subscriber` implementation that does nothing. + +### Added + +- **subscriber**: `NoSubscriber`, a no-op `Subscriber` implementation + ([#1549]) +- **field**: Added `Visit::record_f64` and support for recording + floating-point values ([#1507]) + +Thanks to new contributors @jsgf and @maxburke for contributing to this +release! + +[#1549]: https://github.com/tokio-rs/tracing/pull/1549 [#1507]: +https://github.com/tokio-rs/tracing/pull/1507 + # 0.1.19 (August 17, 2021) ### Added diff --git a/tracing-core/README.md b/tracing-core/README.md index bbdb791ee4..fbe3e74f73 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.19 +[crates-url]: https://crates.io/crates/tracing-core/0.1.20 [docs-badge]: https://docs.rs/tracing-core/badge.svg -[docs-url]: https://docs.rs/tracing-core/0.1.19 +[docs-url]: https://docs.rs/tracing-core/0.1.20 [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.19", default-features = false } + tracing-core = { version = "0.1.20", default-features = false } ``` **Note**:`tracing-core`'s `no_std` support requires `liballoc`.