From 2b1c6e9f5033a42aa8be9f3daad900a91fd6c180 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 26 Jul 2024 02:19:01 +0000 Subject: [PATCH] Release 2024.07.25 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db700a788d..1d739f0073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.07.25 + + +### Changed + +- Upgrade to Django 5.0 ([#5199](https://github.com/cookiecutter/cookiecutter-django/pull/5199)) + +### Updated + +- Update pytest to 8.3.2 ([#5249](https://github.com/cookiecutter/cookiecutter-django/pull/5249)) + +- Update sentry-sdk to 2.11.0 ([#5247](https://github.com/cookiecutter/cookiecutter-django/pull/5247)) + ## 2024.07.24 diff --git a/setup.py b/setup.py index 7778caff9a..fbafc02b09 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2024.07.24" +version = "2024.07.25" with open("README.md") as readme_file: long_description = readme_file.read()