From 05d383fbda261a5ab0399575db03ecc9246f909c Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 17 Dec 2021 02:18:49 +0000 Subject: [PATCH] Release 2021.12.16 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a798879..2bfa73ec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2021.12.16 + +### Fixed +- Fix carriage return in `.gitignore` on Windows ([#3456](https://github.com/cookiecutter/cookiecutter-django/pull/3456)) +### Updated +- Update django-debug-toolbar to 3.2.4 ([#3473](https://github.com/cookiecutter/cookiecutter-django/pull/3473)) + ## 2021.12.15 ### Updated diff --git a/setup.py b/setup.py index 69d9a1c03..8e661fedb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2021.12.15" +version = "2021.12.16" with open("README.rst") as readme_file: long_description = readme_file.read()