From f947c612faf1d612bc357de57b6900e7fea65850 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 24 Aug 2024 02:19:36 +0000 Subject: [PATCH] Release 2024.08.23 --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a38d8ae2..6587ee04d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.08.23 + + +### Updated + +- Update werkzeug to 3.0.4 ([#5313](https://github.com/cookiecutter/cookiecutter-django/pull/5313)) + +- Update ruff to 0.6.2 ([#5316](https://github.com/cookiecutter/cookiecutter-django/pull/5316)) + ## 2024.08.22 diff --git a/setup.py b/setup.py index 20aa631524..b6d92c99d9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2024.08.22" +version = "2024.08.23" with open("README.md") as readme_file: long_description = readme_file.read()