diff --git a/CHANGELOG.md b/CHANGELOG.md index 80142ce4..1290fbd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.09.19 + + +### Updated + +- Auto-update pre-commit hooks ([#4588](https://github.com/cookiecutter/cookiecutter-django/pull/4588)) + +- Update djlint to 1.33.0 ([#4587](https://github.com/cookiecutter/cookiecutter-django/pull/4587)) + ## 2023.09.16 diff --git a/setup.py b/setup.py index 871b50d2..d405ff4b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.09.16" +version = "2023.09.19" with open("README.md") as readme_file: long_description = readme_file.read()