From 29027487fa98e9ad7d2e3f97ff1b00be330484a9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 2 Jul 2024 02:18:05 +0000 Subject: [PATCH] Release 2024.07.01 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72089e5af6..31f3f5b9e0 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.01 + + +### Updated + +- Update ruff to 0.5.0 ([#5181](https://github.com/cookiecutter/cookiecutter-django/pull/5181)) + +- Update sentry-sdk to 2.7.1 ([#5174](https://github.com/cookiecutter/cookiecutter-django/pull/5174)) + +- Auto-update pre-commit hooks ([#5175](https://github.com/cookiecutter/cookiecutter-django/pull/5175)) + +- Update psycopg to 3.2.1 ([#5180](https://github.com/cookiecutter/cookiecutter-django/pull/5180)) + ## 2024.06.30 diff --git a/setup.py b/setup.py index 70cbf2981c..aab16448c0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2024.06.30" +version = "2024.07.01" with open("README.md") as readme_file: long_description = readme_file.read()