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()