diff --git a/CHANGELOG.md b/CHANGELOG.md index 68445b2f7..c5bfcc473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.02.16 + +### Fixed +- Fix Swagger schema API endpoint & add a test for it ([#3592](https://github.com/cookiecutter/cookiecutter-django/pull/3592)) + ## 2022.02.15 ### Changed diff --git a/setup.py b/setup.py index b4ff4a52b..4be18dbfb 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.15" +version = "2022.02.16" with open("README.rst") as readme_file: long_description = readme_file.read()