From 5fb15d594c83b58fce122b707f6f7a452c04aaf7 Mon Sep 17 00:00:00 2001 From: Zak Zajac Date: Fri, 8 Jul 2022 16:37:05 -0700 Subject: [PATCH] Release v2.0.3 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9743fc..c6fb4d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.3] - 2022-07-08 +### Added +- Add PEP 561 marker/basic mypy configuration. - @bringhurst +- Workaround logging.LogRecord.msg type of string. - @bringhurst +### Changed +- Changed a link archive of the reference page in case it's down. - @ahonnecke +- Removed unnecessary try-except around OrderedDict usage - @sozofaan +- Update documentation link to json module + use https - @deronnax +- Dropped 3.5 support. - @bringhurst + ## [2.0.2] - 2021-07-27 ### Added - Officially supporting 3.9 - @felixonmars. @@ -36,6 +46,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.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 [2.0.0]: https://github.com/madzak/python-json-logger/compare/v0.1.11...v2.0.0 diff --git a/setup.py b/setup.py index 4b3f342..de584dd 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="python-json-logger", - version="2.0.2", + version="2.0.3", url="http://github.com/madzak/python-json-logger", license="BSD", include_package_data=True,