From 31f501312fb79dfc0ebc22a95ba2b68cdaeb1b9d Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Mon, 4 Mar 2024 11:02:44 +0100 Subject: [PATCH] Release v0.5.3 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ff541b..f0433d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.5.3 + +* Update to log's stable kv feature + (https://github.com/Thomasdezeeuw/std-logger/commit/e32b37232101f59b1a7c34c3f7885e5b880ebb70). +* Add `thread_name` to key-value pairs for panics + (https://github.com/Thomasdezeeuw/std-logger/commit/e4f60a69855ef25a69f0e95e354e633a1bf7b6eb). +* Add `must_use` attribute to Config + (https://github.com/Thomasdezeeuw/std-logger/commit/42fa63a73d45a6b1e7b41e5223b93222ba77dad9). + ## v0.5.2 * Fix writing of `"` without escaping it using logfmt in some cases diff --git a/Cargo.toml b/Cargo.toml index 89dc458..b5e02a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ A logging implementation for the log crate that logs messages to standard error and requests to standard out. It support a number of output formats including JSON, JSON for GCP (gcloud) and logfmt. """ -version = "0.5.2" +version = "0.5.3" authors = ["Thomas de Zeeuw "] license = "MIT/Apache-2.0" documentation = "https://docs.rs/std-logger"