Skip to content

Commit 3217a7d

Browse files
committed
v0.0.4
1 parent 52fda5b commit 3217a7d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.0.4 (2022-03-29)
2+
3+
- Fix the usage documentation
4+
- Escape newline characters in all logged values. Previously, you could generate
5+
multi-line log statements. This should never be the case.
6+
- Add support for auto-generating `exc_info` parameters. If the log record is
7+
generated with `exc_info`, as in when using `logging.exception(...)`, the
8+
log message will contain properly formatted exception and traceback information.
9+
- Add support for logging with an empty message dictionary.
10+
111
# 0.0.3 (2022-01-13)
212

313
- Include type hints

logfmter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from logfmter.formatter import Logfmter
44

5-
__version__ = "0.0.3"
5+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)