From d1b2d351dfa4c10011c0eb279a78c4a1c9139a10 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Mon, 13 Sep 2021 10:49:47 -0700 Subject: [PATCH] subscriber: prepare to release 0.2.22 # 0.2.22 (September 13, 2021) This fixes a regression where the `filter::ParseError` type was accidentally renamed. ### Fixed - **filter**: Fix `filter::ParseError` accidentally being renamed to `filter::DirectiveParseError` ([#1558]) [#1558]: https://github.com/tokio-rs/tracing/pull/1558 --- tracing-subscriber/CHANGELOG.md | 12 ++++++++++++ tracing-subscriber/Cargo.toml | 2 +- tracing-subscriber/src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/tracing-subscriber/CHANGELOG.md b/tracing-subscriber/CHANGELOG.md index 1eb0552a09..02a241ec5f 100644 --- a/tracing-subscriber/CHANGELOG.md +++ b/tracing-subscriber/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.2.22 (September 13, 2021) + +This fixes a regression where the `filter::ParseError` type was accidentally +renamed. + +### Fixed + +- **filter**: Fix `filter::ParseError` accidentally being renamed to + `filter::DirectiveParseError` ([#1558]) + +[#1558]: https://github.com/tokio-rs/tracing/pull/1558 + # 0.2.21 (September 12, 2021) This release introduces the [`Filter`] trait, a new API for [per-layer diff --git a/tracing-subscriber/Cargo.toml b/tracing-subscriber/Cargo.toml index aed7d985eb..53154f1d81 100644 --- a/tracing-subscriber/Cargo.toml +++ b/tracing-subscriber/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-subscriber" -version = "0.2.21" +version = "0.2.22" authors = [ "Eliza Weisman ", "David Barsky ", diff --git a/tracing-subscriber/src/lib.rs b/tracing-subscriber/src/lib.rs index b37b7fe84f..00a8149b32 100644 --- a/tracing-subscriber/src/lib.rs +++ b/tracing-subscriber/src/lib.rs @@ -91,7 +91,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.21")] +#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.22")] #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png", issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"