From 5b7692b358f9828a16fc97665287f39118a4c9d3 Mon Sep 17 00:00:00 2001 From: Zakaria Zajac Date: Sun, 12 Feb 2023 11:09:07 -0800 Subject: [PATCH] Release v2.0.5 --- CHANGELOG.md | 18 +++++++++++++++++- setup.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2718d1a..1e8cb8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,24 @@ 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.5] - 2023-02-12 +### Added +- Allow reserved attrs to be renamed - @henkhogan +- Support added for Python 3.11 +- Now verifying builds in Pypy 3.9 as well +- Type annotations are now in the package - @louis-jaris +### Changed +- Fix rename_fields for exc_info - @guilhermeferrari +- Cleaned up test file for PEP8 - @lopagela +- Cleaned up old Python 2 artifacts - @louis-jaris +- Dropped Python 3.5 support - @idomozes +- Moved type check via tox into 3.11 run only +- Added test run in Python3.6 (will keep for a little while longer, but it's EOL so upgrade) + ## [2.0.4] - 2022-07-11 ### Changed - Fix too strict regex for percentage style logging - @aberres +- ## [2.0.3] - 2022-07-08 ### Added @@ -50,7 +65,8 @@ 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.5]: https://github.com/madzak/python-json-logger/compare/v2.0.4...v2.0.5 +[2.0.4]: https://github.com/madzak/python-json-logger/compare/v2.0.3...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 e5c1a50..36b5611 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="python-json-logger", - version="2.0.4", + version="2.0.5", url="http://github.com/madzak/python-json-logger", license="BSD", include_package_data=True,