From ee31a1eb639722a88a4b03af4db31aea8b682488 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 25 May 2023 02:19:11 +0000 Subject: [PATCH] Release 2023.05.24 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa4ab1e3..fbb4ca12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.05.24 + + +### Fixed + +- Prevent Celery restarts on media file changes ([#4352](https://github.com/cookiecutter/cookiecutter-django/pull/4352)) + +### Updated + +- Update coverage to 7.2.6 ([#4351](https://github.com/cookiecutter/cookiecutter-django/pull/4351)) + ## 2023.05.23 diff --git a/setup.py b/setup.py index 6cc61b94..1c19b5b5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.05.23" +version = "2023.05.24" with open("README.rst") as readme_file: long_description = readme_file.read()