diff --git a/CHANGELOG.md b/CHANGELOG.md index c23a312a2..879469f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.01.12 + +### Updated +- Bug #12345 Update redis to 4.4.2 ([#88](https://github.com/packershift/cookiecutter-django-quickstart/pull/88)) + ## 2023.01.10 ### Updated diff --git a/setup.py b/setup.py index 331c61a1b..8a509abca 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.01.10" +version = "2023.01.12" with open("README.rst") as readme_file: long_description = readme_file.read()