From fb5021e124adb8e8e777aef7d89631242f6327e9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 11 Feb 2022 02:16:15 +0000 Subject: [PATCH] Release 2022.02.10 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8397d4c5..0f60cd9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.02.10 + +### Fixed +- Fix GitLab CI error caused by Docker Compose's `platform` option ([#3585](https://github.com/cookiecutter/cookiecutter-django/pull/3585)) +### Updated +- Update whitenoise to 6.0.0 ([#3583](https://github.com/cookiecutter/cookiecutter-django/pull/3583)) + ## 2022.02.08 ### Fixed diff --git a/setup.py b/setup.py index f1882dda..a9f4982d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.02.08" +version = "2022.02.10" with open("README.rst") as readme_file: long_description = readme_file.read()