diff --git a/tracing-journald/CHANGELOG.md b/tracing-journald/CHANGELOG.md index 164e24ec36..3c3816de19 100644 --- a/tracing-journald/CHANGELOG.md +++ b/tracing-journald/CHANGELOG.md @@ -1,3 +1,24 @@ +# 0.4.0 (November 6, 2023) + +While tracing-journald-0.4.0 does not contain any breaking _code_ changes, this +release disables the default features of `tracing-subscriber`. + +### Changed + +- Disable default features of tracing-subscriber ([#1476]) + +### Added + +- Allow custom journal fields ([#2708]) + +### Fixed + +- Fix minimal-versions correctness ([#2246]) + +[#1476]: https://github.com/tokio-rs/tracing/pull/1476 +[#2708]: https://github.com/tokio-rs/tracing/pull/2708 +[#2246]: https://github.com/tokio-rs/tracing/pull/2246 + # 0.3.0 (April 21, 2022) This is a breaking release which changes the format in which span fields diff --git a/tracing-journald/Cargo.toml b/tracing-journald/Cargo.toml index f6944f1ca7..6b6240c4e5 100644 --- a/tracing-journald/Cargo.toml +++ b/tracing-journald/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-journald" -version = "0.3.0" +version = "0.4.0" authors = ["Benjamin Saunders "] edition = "2018" license = "MIT"