From 9757b1739e90b03adb1d4702a8220be914345cb2 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 27 Jun 2024 02:17:42 +0000 Subject: [PATCH] Release 2024.06.26 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a318bacd..3cb7db80 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.06.26 + + +### Fixed + +- Fix keywords case warning in Dockerfile ([#5164](https://github.com/cookiecutter/cookiecutter-django/pull/5164)) + +### Updated + +- Update redis to 5.0.7 ([#5170](https://github.com/cookiecutter/cookiecutter-django/pull/5170)) + +- Update sentry-sdk to 2.7.0 ([#5169](https://github.com/cookiecutter/cookiecutter-django/pull/5169)) + ## 2024.06.24 diff --git a/setup.py b/setup.py index 06af356f..329f0486 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.06.24" +version = "2024.06.26" with open("README.md") as readme_file: long_description = readme_file.read()