diff --git a/CHANGELOG.md b/CHANGELOG.md index a32895aa..60c1ce38 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.06.11 + + +### Updated + +- Update pytest to 7.3.2 ([#4384](https://github.com/cookiecutter/cookiecutter-django/pull/4384)) + +- Auto-update pre-commit hooks ([#4385](https://github.com/cookiecutter/cookiecutter-django/pull/4385)) + ## 2023.06.09 diff --git a/setup.py b/setup.py index 9271e944..cc429c0e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.09" +version = "2023.06.11" with open("README.rst") as readme_file: long_description = readme_file.read()