From 72770ed76742f2fb59ca0850310cbb7df9e0d529 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 16 Jan 2023 02:41:37 +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 57f3cf596..3fdea28ed 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 +- Bug #12345 Update pytz to 2022.7.1 ([#92](https://github.com/packershift/cookiecutter-django-quickstart/pull/92)) +- Bug #12345 Update pytest to 7.2.1 ([#91](https://github.com/packershift/cookiecutter-django-quickstart/pull/91)) + ## 2023.01.13 ### Updated diff --git a/setup.py b/setup.py index d47c38011..530ce6239 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.13" +version = "2023.01.15" with open("README.rst") as readme_file: long_description = readme_file.read()