From fad9236a2c9eee19c3f7508d0d76b8dfb43dd8ab Mon Sep 17 00:00:00 2001 From: Joshua Taylor Eppinette Date: Wed, 20 Apr 2022 14:13:16 -0600 Subject: [PATCH] v0.0.5 --- HISTORY.md | 5 +++++ logfmter/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 0438750..6328404 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +# 0.0.5 (2022-04-20) + +- Add support for include native log record attributes in the final log output. +- Add support for overriding the date format used when formatting the `asctime` attribute. + # 0.0.4 (2022-03-29) - Fix the usage documentation diff --git a/logfmter/__init__.py b/logfmter/__init__.py index 3b5ab9b..cf96804 100644 --- a/logfmter/__init__.py +++ b/logfmter/__init__.py @@ -2,4 +2,4 @@ from logfmter.formatter import Logfmter -__version__ = "0.0.4" +__version__ = "0.0.5"