Skip to content

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jteppinette committed Mar 30, 2022
1 parent 52fda5b commit 3217a7d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.0.4 (2022-03-29)

- Fix the usage documentation
- Escape newline characters in all logged values. Previously, you could generate
multi-line log statements. This should never be the case.
- Add support for auto-generating `exc_info` parameters. If the log record is
generated with `exc_info`, as in when using `logging.exception(...)`, the
log message will contain properly formatted exception and traceback information.
- Add support for logging with an empty message dictionary.

# 0.0.3 (2022-01-13)

- Include type hints
Expand Down
2 changes: 1 addition & 1 deletion logfmter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from logfmter.formatter import Logfmter

__version__ = "0.0.3"
__version__ = "0.0.4"

0 comments on commit 3217a7d

Please sign in to comment.