diff --git a/CHANGELOG.md b/CHANGELOG.md index 99132d26fe..2c8afa665e 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.07.23 + + +### Changed + +- Ensure that awscli service has a CMD to fix #5241 ([#5245](https://github.com/cookiecutter/cookiecutter-django/pull/5245)) + +### Fixed + +- Downgrade watchfiles ([#5243](https://github.com/cookiecutter/cookiecutter-django/pull/5243)) + ## 2024.07.22 diff --git a/setup.py b/setup.py index adfbea1568..f47a035329 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2024.07.22" +version = "2024.07.23" with open("README.md") as readme_file: long_description = readme_file.read()