Skip to content

Commit dd49b99

Browse files
authored
subscriber: prepare to release 0.2.18 (#1384)
# 0.2.18 (April 30, 2021) ### Deprecated - Deprecated the `CurrentSpan` type, which is inefficient and largely superseded by the `registry` API ([#1321]) ### Fixed - **json**: Invalid JSON emitted for events in spans with no fields ([#1333]) - **json**: Missing span data for synthesized new span, exit, and close events ([#1334]) - **fmt**: Extra space before log lines when timestamps are disabled ([#1355]) ### Added - **env-filter**: Support for filters on spans whose names contain any characters other than `{` and `]` ([#1368]) Thanks to @Folyd, and new contributors @akinnane and @aym-v for contributing to this release! [#1321]: #1321 [#1333]: #1333 [#1334]: #1334 [#1355]: #1355 [#1368]: #1368
1 parent d9e8ece commit dd49b99

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

tracing-subscriber/CHANGELOG.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
# 0.2.17 (March 12, 2020)
1+
# 0.2.18 (April 30, 2021)
2+
3+
### Deprecated
4+
5+
- Deprecated the `CurrentSpan` type, which is inefficient and largely superseded
6+
by the `registry` API ([#1321])
7+
8+
### Fixed
9+
10+
- **json**: Invalid JSON emitted for events in spans with no fields ([#1333])
11+
- **json**: Missing span data for synthesized new span, exit, and close events
12+
([#1334])
13+
- **fmt**: Extra space before log lines when timestamps are disabled ([#1355])
14+
15+
### Added
16+
17+
- **env-filter**: Support for filters on spans whose names contain any
18+
characters other than `{` and `]` ([#1368])
19+
20+
Thanks to @Folyd, and new contributors @akinnane and @aym-v for contributing to
21+
this release!
22+
23+
[#1321]: https://github.com/tokio-rs/tracing/pull/1321
24+
[#1333]: https://github.com/tokio-rs/tracing/pull/1333
25+
[#1334]: https://github.com/tokio-rs/tracing/pull/1334
26+
[#1355]: https://github.com/tokio-rs/tracing/pull/1355
27+
[#1368]: https://github.com/tokio-rs/tracing/pull/1368
28+
29+
# 0.2.17 (March 12, 2021)
230

331
### Fixed
432

@@ -24,7 +52,7 @@ Thanks to new contributors @cratelyn, @dignati, and @zicklag, as well as @Folyd,
2452
[#1290]: https://github.com/tokio-rs/tracing/pull/1290
2553
[#1277]: https://github.com/tokio-rs/tracing/pull/1277
2654

27-
# 0.2.16 (February 19, 2020)
55+
# 0.2.16 (February 19, 2021)
2856

2957
### Fixed
3058

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.2.17"
3+
version = "0.2.18"
44
authors = [
55
"Eliza Weisman <[email protected]>",
66
"David Barsky <[email protected]>",

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.2.17
24+
[docs-url]: https://docs.rs/tracing-subscriber/0.2.18
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
@@ -67,7 +67,7 @@
6767
//! [`env_logger` crate]: https://crates.io/crates/env_logger
6868
//! [`parking_lot`]: https://crates.io/crates/parking_lot
6969
//! [`registry`]: registry/index.html
70-
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.17")]
70+
#![doc(html_root_url = "https://docs.rs/tracing-subscriber/0.2.18")]
7171
#![doc(
7272
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/tracing/master/assets/logo-type.png",
7373
issue_tracker_base_url = "https://github.com/tokio-rs/tracing/issues/"

0 commit comments

Comments
 (0)