From 2d5712baf0792abc5c83f07954916d7ecdb920d8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 30 May 2024 02:17:05 +0000 Subject: [PATCH] Release 2024.05.29 --- CHANGELOG.md | 15 +++++++++++++++ setup.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7681830..8c5ccc03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.05.29 + + +### Updated + +- Update requests to 2.32.3 ([#5108](https://github.com/cookiecutter/cookiecutter-django/pull/5108)) + +- Update ruff to 0.4.6 ([#5107](https://github.com/cookiecutter/cookiecutter-django/pull/5107)) + +- Auto-update pre-commit hooks ([#5106](https://github.com/cookiecutter/cookiecutter-django/pull/5106)) + +- Update coverage to 7.5.3 ([#5104](https://github.com/cookiecutter/cookiecutter-django/pull/5104)) + +- Update django-upgrade to 1.18.0 ([#5105](https://github.com/cookiecutter/cookiecutter-django/pull/5105)) + ## 2024.05.27 diff --git a/setup.py b/setup.py index dfdbc330..49e644a9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.05.27" +version = "2024.05.29" with open("README.md") as readme_file: long_description = readme_file.read()