From c889311821e8a05cc10dc2922df2049482882d22 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 31 Jan 2020 14:59:32 -0800 Subject: [PATCH] subscriber: prepare to release 0.2.0-alpha.5 (#555) ### Added: - **env_filter**: Documentation for filtering directives (#554) - **registry**, **env_filter**: Updated `smallvec` dependency to 0.1 (#543) ### Fixed: - **registry**: Fixed a memory leak in the slab used to store per-span data (3c35048) - **Layer**: Fixed `Layered` subscribers failing to downcast to their own type (#549) - **fmt**: Fixed a panic when multiple layers insert `FormattedFields` extensions from the same formatter type (1c3bb70) - **fmt**: Fixed `fmt::Layer::on_record` inserting a new `FormattedFields` when formatted fields for a span already exist (1c3bb70) Signed-off-by: Eliza Weisman --- README.md | 2 +- tracing-subscriber/CHANGELOG.md | 18 ++++++++++++++++++ tracing-subscriber/Cargo.toml | 2 +- tracing-subscriber/README.md | 2 +- tracing-subscriber/src/lib.rs | 2 +- tracing/README.md | 2 +- 6 files changed, 23 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 265f77e056..e9b45fa79e 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ fn main() { ```toml [dependencies] tracing = "0.1" -tracing-subscriber = "0.2.0-alpha.4" +tracing-subscriber = "0.2.0-alpha.5" ``` This subscriber will be used as the default in all threads for the remainder of the duration diff --git a/tracing-subscriber/CHANGELOG.md b/tracing-subscriber/CHANGELOG.md index 17e423431c..3cb12e2189 100644 --- a/tracing-subscriber/CHANGELOG.md +++ b/tracing-subscriber/CHANGELOG.md @@ -1,3 +1,21 @@ +# 0.2.0-alpha.5 (January 31, 2020) + +### Added + +- **env_filter**: Documentation for filtering directives (#554) +- **registry**, **env_filter**: Updated `smallvec` dependency to 0.1 (#543) + +### Fixed + +- **registry**: Fixed a memory leak in the slab used to store per-span data + (3c35048) +- **Layer**: Fixed `Layered` subscribers failing to downcast to their own type + (#549) +- **fmt**: Fixed a panic when multiple layers insert `FormattedFields` + extensions from the same formatter type (1c3bb70) +- **fmt**: Fixed `fmt::Layer::on_record` inserting a new `FormattedFields` when + formatted fields for a span already exist (1c3bb70) + # 0.2.0-alpha.4 (January 11, 2020) ### Fixed diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index 45a9da6528..ee779ff2f9 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-subscriber" -version = "0.2.0-alpha.4" +version = "0.2.0-alpha.5" authors = [ "Eliza Weisman ", "David Barsky ", diff --git a/tracing-subscriber/README.md b/tracing-subscriber/README.md index 5ed38e24c9..be995cd2ac 100644 --- a/tracing-subscriber/README.md +++ b/tracing-subscriber/README.md @@ -17,7 +17,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers. [crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg [crates-url]: https://crates.io/crates/tracing-subscriber [docs-badge]: https://docs.rs/tracing-subscriber/badge.svg -[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.4 +[docs-url]: https://docs.rs/tracing-subscriber/0.2.0-alpha.5 [docs-master-badge]: https://img.shields.io/badge/docs-master-blue [docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg diff --git a/tracing-subscriber/src/lib.rs b/tracing-subscriber/src/lib.rs index 0154a9f72c..b08b491096 100644 --- a/tracing-subscriber/src/lib.rs +++ b/tracing-subscriber/src/lib.rs @@ -51,7 +51,7 @@ //! [`env_logger` crate]: https://crates.io/crates/env_logger //! [`parking_lot`]: https://crates.io/crates/parking_lot //! [`registry`]: registry/index.html -#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.4")] +#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.0-alpha.5")] #![cfg_attr(docsrs, feature(doc_cfg))] #![warn( missing_debug_implementations, diff --git a/tracing/README.md b/tracing/README.md index 9bbe40cfc6..62e7f0a13a 100644 --- a/tracing/README.md +++ b/tracing/README.md @@ -93,7 +93,7 @@ fn main() { ```toml [dependencies] tracing = "0.1" -tracing-subscriber = "0.2.0-alpha.4" +tracing-subscriber = "0.2.0-alpha.5" ``` This subscriber will be used as the default in all threads for the remainder of the duration