diff --git a/CHANGELOG.md b/CHANGELOG.md index a616f946..2ad4c77d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.04.28 + +### Changed +- Add the possibility to set a max django version on create_django_issue script ([#3680](https://github.com/cookiecutter/cookiecutter-django/pull/3680)) + ## 2022.04.27 ### Updated diff --git a/setup.py b/setup.py index 3b3bf6b2..eb5db1a0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.04.27" +version = "2022.04.28" with open("README.rst") as readme_file: long_description = readme_file.read()