Skip to content

Commit 24ee184

Browse files
authored
subscriber: prepare to release v0.3.7 (#1860)
# 0.3.7 (Jan 25, 2022) This release adds combinators for combining filters. Additionally, this release also updates the `thread-local` crate to v1.1.4, fixing warnings for the security advisory [RUSTSEC-2022-0006]. Note that previous versions of `tracing-subscriber` did not use any of the `thread-local` crate's APIs effected by the vulnerability. However, updating the version fixes warnings emitted by `cargo audit` and similar tools. ### Added - **filter**: Added combinators for combining filters ([#1578]) ### Fixed - **registry**: Updated `thread-local` to v1.1.4 ([#1858]) Thanks to new contributor @matze for contributing to this release! [RUSTSEC-2022-0006]: https://rustsec.org/advisories/RUSTSEC-2022-0006 [#1578]: #1578 [#1858]: #1858
1 parent dc546eb commit 24ee184

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 0.3.7 (Jan 25, 2022)
2+
3+
This release adds combinators for combining filters.
4+
5+
Additionally, this release also updates the `thread-local` crate to v1.1.4,
6+
fixing warnings for the security advisory [RUSTSEC-2022-0006]. Note that
7+
previous versions of `tracing-subscriber` did not use any of the `thread-local`
8+
crate's APIs effected by the vulnerability. However, updating the version fixes
9+
warnings emitted by `cargo audit` and similar tools.
10+
11+
### Added
12+
13+
- **filter**: Added combinators for combining filters ([#1578])
14+
15+
### Fixed
16+
17+
- **registry**: Updated `thread-local` to v1.1.4 ([#1858])
18+
19+
Thanks to new contributor @matze for contributing to this release!
20+
21+
[RUSTSEC-2022-0006]: https://rustsec.org/advisories/RUSTSEC-2022-0006
22+
[#1578]: https://github.com/tokio-rs/tracing/pull/1578
23+
[#1858]: https://github.com/tokio-rs/tracing/pull/1858
24+
125
# 0.3.6 (Jan 14, 2022)
226

327
This release adds configuration options to `tracing_subscriber::fmt` to log

tracing-subscriber/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tracing-subscriber"
3-
version = "0.3.6"
3+
version = "0.3.7"
44
authors = [
55
"Eliza Weisman <eliza@buoyant.io>",
66
"David Barsky <me@davidbarsky.com>",

tracing-subscriber/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Utilities for implementing and composing [`tracing`][tracing] subscribers.
2121
[crates-badge]: https://img.shields.io/crates/v/tracing-subscriber.svg
2222
[crates-url]: https://crates.io/crates/tracing-subscriber
2323
[docs-badge]: https://docs.rs/tracing-subscriber/badge.svg
24-
[docs-url]: https://docs.rs/tracing-subscriber/0.3.6
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.3.7
2525
[docs-master-badge]: https://img.shields.io/badge/docs-master-blue
2626
[docs-master-url]: https://tracing-rs.netlify.com/tracing_subscriber
2727
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg

tracing-subscriber/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
//! [`parking_lot`]: https://crates.io/crates/parking_lot
127127
//! [`time` crate]: https://crates.io/crates/time
128128
//! [`liballoc`]: https://doc.rust-lang.org/alloc/index.html
129-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.6")]
129+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.3.7")]
130130
#![doc(
131131
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
132132
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)