diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce2317..b658b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog](http://keepachangelog.com/). +## 4.2.4 - 2022-04-26 + +### Update + + - Update django version => 2.2.28 + ## 4.2.3 - 2022-03-23 ### Fixed diff --git a/sap/cf_logging/__init__.py b/sap/cf_logging/__init__.py index a9f07a0..8610d08 100644 --- a/sap/cf_logging/__init__.py +++ b/sap/cf_logging/__init__.py @@ -10,7 +10,7 @@ from sap.cf_logging.record.request_log_record import RequestWebRecord from sap.cf_logging.record.simple_log_record import SimpleLogRecord -__version__ = '4.2.3' +__version__ = '4.2.4' _SETUP_DONE = False FRAMEWORK = None diff --git a/test-requirements.txt b/test-requirements.txt index f06157b..e6cf178 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -14,4 +14,4 @@ pylint==1.9.5; python_version == '2.7' pylint==2.5.3; python_version >= '3.5' tox django==1.11.29; python_version == '2.7' -django==2.2.13; python_version >= '3.5' +django==2.2.28; python_version >= '3.5'