From af254a172f3a1012aa38ce25fe080d5cfb41465a Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Fri, 14 Jan 2022 13:20:52 -0800 Subject: [PATCH] journald: prepare to release 0.2.2 (#1838) # 0.2.2 (January 14, 2022) ### Added - Include a syslog identifier in log messages ([#1822]) - Added `Layer::with_syslog_identifier` method to override the syslog identifier ([#1822]) Thanks to @lunaryorn for contributing to this release! [#1822]: https://github.com/tokio-rs/tracing/pull/1822 --- tracing-journald/CHANGELOG.md | 11 +++++++++++ tracing-journald/Cargo.toml | 2 +- tracing-journald/src/lib.rs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/tracing-journald/CHANGELOG.md b/tracing-journald/CHANGELOG.md index 375530c7..e1266365 100644 --- a/tracing-journald/CHANGELOG.md +++ b/tracing-journald/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.2.2 (January 14, 2022) +### Added + +- Include a syslog identifier in log messages ([#1822]) +- Added `Layer::with_syslog_identifier` method to override the syslog identifier + ([#1822]) + +Thanks to @lunaryorn for contributing to this release! + +[#1822]: https://github.com/tokio-rs/tracing/pull/1822 + # 0.2.1 (December 29, 2021) This release improves how `tracing-journald` communicates with `journald`, diff --git a/tracing-journald/Cargo.toml b/tracing-journald/Cargo.toml index e4e24413..1b44595a 100644 --- a/tracing-journald/Cargo.toml +++ b/tracing-journald/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-journald" -version = "0.2.1" +version = "0.2.2" authors = ["Benjamin Saunders "] edition = "2018" license = "MIT" diff --git a/tracing-journald/src/lib.rs b/tracing-journald/src/lib.rs index 8fb32042..591eea07 100644 --- a/tracing-journald/src/lib.rs +++ b/tracing-journald/src/lib.rs @@ -10,7 +10,7 @@ //! [`tracing-subscriber::Layer`][layer] implementation for logging `tracing` spans //! and events to [`systemd-journald`][journald], on Linux distributions that //! use `systemd`. -//! +//! //! *Compiler support: [requires `rustc` 1.42+][msrv]* //! //! [msrv]: #supported-rust-versions