From 3f53a2695b0824a1ccd1b62e866568fce53a2c08 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 16 Jan 2023 02:26:38 +0000 Subject: [PATCH] Release 2023.01.15 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5269ac14d..00698a012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.01.15 + +### Updated +- Update pytest to 7.2.1 ([#4077](https://github.com/cookiecutter/cookiecutter-django/pull/4077)) +- Update pytz to 2022.7.1 ([#4078](https://github.com/cookiecutter/cookiecutter-django/pull/4078)) + ## 2023.01.12 ### Updated diff --git a/setup.py b/setup.py index 765459067..cdbbc6929 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.01.12" +version = "2023.01.15" with open("README.rst") as readme_file: long_description = readme_file.read()