diff --git a/CHANGELOG.md b/CHANGELOG.md index b9eab7df9..4b8ec9d45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.12.05 + +### Updated +- Auto-update pre-commit hooks ([#27](https://github.com/packershift/cookiecutter-django-quickstart/pull/27)) +- Bug #12345 Update redis to 4.4.0 ([#29](https://github.com/packershift/cookiecutter-django-quickstart/pull/29)) +- Bug #12345 Update django-debug-toolbar to 3.8.1 ([#28](https://github.com/packershift/cookiecutter-django-quickstart/pull/28)) +- Bump stefanzweifel/git-auto-commit-action from 4.15.4 to 4.16.0 ([#26](https://github.com/packershift/cookiecutter-django-quickstart/pull/26)) + ## 2022.12.01 ### Updated diff --git a/setup.py b/setup.py index a13261f83..8acdba56f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.12.01" +version = "2022.12.05" with open("README.rst") as readme_file: long_description = readme_file.read()