diff --git a/CHANGELOG.md b/CHANGELOG.md index 6587ee04..0dbcbaf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.08.26 + + +### Changed + +- Check DB migrations in GitHub CI ([#5322](https://github.com/cookiecutter/cookiecutter-django/pull/5322)) + +### Updated + +- Update mypy to 1.11.2 ([#5320](https://github.com/cookiecutter/cookiecutter-django/pull/5320)) + ## 2024.08.23 diff --git a/setup.py b/setup.py index b6d92c99..78bc94e8 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.08.23" +version = "2024.08.26" with open("README.md") as readme_file: long_description = readme_file.read()