From 0530c52b6540dcf48107c3206f2e1897fb11e3bf Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 4 Jul 2023 02:33:16 +0000 Subject: [PATCH] Release 2023.07.03 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8bffadd34..53b4f635ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.07.03 + + +### Changed + +- Add a devcontainer configuration with Docker ([#4198](https://github.com/cookiecutter/cookiecutter-django/pull/4198)) + +### Updated + +- Update django-stubs to 4.2.3 ([#4430](https://github.com/cookiecutter/cookiecutter-django/pull/4430)) + +- Update django to 4.2.3 ([#4435](https://github.com/cookiecutter/cookiecutter-django/pull/4435)) + ## 2023.06.30 diff --git a/setup.py b/setup.py index b0f1c97a0c..03b978f5bd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup # We use calendar versioning -version = "2023.06.30" +version = "2023.07.03" with open("README.rst") as readme_file: long_description = readme_file.read()