From 3d7a2db072873496bd4cc779f9a2331bd46da81b Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 29 Apr 2022 02:46:26 +0000 Subject: [PATCH] Release 2022.04.28 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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()