Release 2023.06.18

This commit is contained in:
github-actions 2023-06-19 02:26:21 +00:00
parent 224f31e7f3
commit 95353f07a9
2 changed files with 12 additions and 1 deletions

View File

@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER -->
## 2023.06.18
### Changed
- Fix missing celery env variable when running compilemessages ([#4403](https://github.com/cookiecutter/cookiecutter-django/pull/4403))
### Updated
- Update flower to 2.0.0 ([#4402](https://github.com/cookiecutter/cookiecutter-django/pull/4402))
## 2023.06.17

View File

@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup
# We use calendar versioning
version = "2023.06.17"
version = "2023.06.18"
with open("README.rst") as readme_file:
long_description = readme_file.read()