diff --git a/CHANGELOG.md b/CHANGELOG.md index c6fb4d6..2718d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.4] - 2022-07-11 +### Changed +- Fix too strict regex for percentage style logging - @aberres + ## [2.0.3] - 2022-07-08 ### Added - Add PEP 561 marker/basic mypy configuration. - @bringhurst @@ -46,6 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 'stack_info' flag in logging calls is now respected in JsonFormatter by [@ghShu](https://github.com/ghShu) +[2.0.4]: https://github.com/madzak/python-json-logger/compare/v2.0.2...v2.0.4 [2.0.3]: https://github.com/madzak/python-json-logger/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/madzak/python-json-logger/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/madzak/python-json-logger/compare/v2.0.0...v2.0.1 diff --git a/setup.py b/setup.py index de584dd..4b4f3cc 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="python-json-logger", - version="2.0.3", + version="2.0.4", url="http://github.com/madzak/python-json-logger", license="BSD", include_package_data=True,