diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c488da1c..e116c0ab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.12.22 + +### Updated +- Auto-update pre-commit hooks ([#62](https://github.com/packershift/cookiecutter-django-quickstart/pull/62)) +- Bug #12345 Update isort to 5.11.4 ([#61](https://github.com/packershift/cookiecutter-django-quickstart/pull/61)) + ## 2022.12.21 ### Updated diff --git a/setup.py b/setup.py index 6a4395a51..ea071bcee 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.21" +version = "2022.12.22" with open("README.rst") as readme_file: long_description = readme_file.read()