diff --git a/CHANGELOG.md b/CHANGELOG.md index 364b9d953b..a872000360 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.11.09 + + +### Updated + +- Auto-update pre-commit hooks ([#4673](https://github.com/cookiecutter/cookiecutter-django/pull/4673)) + +- Update black to 23.11.0 ([#4674](https://github.com/cookiecutter/cookiecutter-django/pull/4674)) + ## 2023.11.08 diff --git a/setup.py b/setup.py index 297861317e..8067c5479b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2023.11.08" +version = "2023.11.09" with open("README.md") as readme_file: long_description = readme_file.read()