From 681950083cf167ce2949160c8a5857cbdddec6cc Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 7 Dec 2023 02:16:11 +0000 Subject: [PATCH] Release 2023.12.06 --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ecdfa699..8891e650e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.12.06 + + +### Updated + +- Bump python from 3.11.6 to 3.11.7 ([#4719](https://github.com/cookiecutter/cookiecutter-django/pull/4719)) + +- Update mypy to 1.7.1, django-stubs to 4.2.7 and djangorestframework-stubs to 3.14.5 ([#4694](https://github.com/cookiecutter/cookiecutter-django/pull/4694)) + ## 2023.12.04 diff --git a/setup.py b/setup.py index 334cee13f..e82bd456c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.12.04" +version = "2023.12.06" with open("README.md") as readme_file: long_description = readme_file.read()