From 5083e2dafa2a4490ee37f6d6d1c34dfe4cacd013 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 21 Apr 2022 11:19:30 -0700 Subject: [PATCH] tracing-journald: prepare to release v0.3.0 # 0.3.0 (April 21, 2022) This is a breaking release which changes the format in which span fields are output to `journald`. Previously, span field names were prefixed with the depth of the span in the current trace tree. However, these prefixes are unnecessary, as `journald` has built in support for duplicated field names. See PR [#1986] for details on this change. ## Changed - Removed span field prefixes ([#1986]) - Renamed `S{num}_NAME` fields to `SPAN_NAME ([#1986]) ### Fixed - Fixed broken links in documentation ([#2077]) Thanks to @wiktorsikora and @ben0x539 for contributing to this release! [#1986]: https://github.com/tokio-rs/tracing/pull/1986 [#2077]: https://github.com/tokio-rs/tracing/pull/2077 --- tracing-journald/CHANGELOG.md | 23 +++++++++++++++++++++++ tracing-journald/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/tracing-journald/CHANGELOG.md b/tracing-journald/CHANGELOG.md index 320a0f238e..164e24ec36 100644 --- a/tracing-journald/CHANGELOG.md +++ b/tracing-journald/CHANGELOG.md @@ -1,3 +1,26 @@ +# 0.3.0 (April 21, 2022) + +This is a breaking release which changes the format in which span fields +are output to `journald`. Previously, span field names were prefixed with the +depth of the span in the current trace tree. However, these prefixes are +unnecessary, as `journald` has built in support for duplicated field names. + +See PR [#1986] for details on this change. + +## Changed + +- Removed span field prefixes ([#1986]) +- Renamed `S{num}_NAME` fields to `SPAN_NAME` ([#1986]) + +### Fixed + +- Fixed broken links in documentation ([#2077]) + +Thanks to @wiktorsikora and @ben0x539 for contributing to this release! + +[#1986]: https://github.com/tokio-rs/tracing/pull/1986 +[#2077]: https://github.com/tokio-rs/tracing/pull/2077 + # 0.2.4 (March 17, 2022) ### Fixed diff --git a/tracing-journald/Cargo.toml b/tracing-journald/Cargo.toml index 5a20a37175..c5cea152d5 100644 --- a/tracing-journald/Cargo.toml +++ b/tracing-journald/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-journald" -version = "0.2.4" +version = "0.3.0" authors = ["Benjamin Saunders "] edition = "2018" license = "MIT"