Release 2024.04.24

This commit is contained in:
github-actions 2024-04-25 02:13:35 +00:00
parent 090153079e
commit 4937e29adf
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 -->
## 2024.04.24
### Changed
- Disable UP038 Ruff rule to avoid introducing slower code ([#5020](https://github.com/cookiecutter/cookiecutter-django/pull/5020))
### Updated
- Update django-allauth to 0.62.1 ([#5021](https://github.com/cookiecutter/cookiecutter-django/pull/5021))
## 2024.04.23

View File

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