From f643dffa733dbb114eeda42aa02c375f8b0dd9bb Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 10 Jun 2023 02:27:27 +0000 Subject: [PATCH] Release 2023.06.09 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f572bd79..a32895aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.09 + + +### Fixed + +- Fix missing `compilemessages` step before deploying to prod ([#4363](https://github.com/cookiecutter/cookiecutter-django/pull/4363)) + ## 2023.06.08 diff --git a/setup.py b/setup.py index f541bdee..9271e944 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.08" +version = "2023.06.09" with open("README.rst") as readme_file: long_description = readme_file.read()