diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ecf7b21..a803ba3f 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.05.16 + +### Changed +- Update postgres versions ([#3712](https://github.com/cookiecutter/cookiecutter-django/pull/3712)) +### Updated +- Update django-anymail to 8.6 ([#3713](https://github.com/cookiecutter/cookiecutter-django/pull/3713)) + ## 2022.05.14 ### Updated diff --git a/setup.py b/setup.py index 9d9b397c..34f44140 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.05.14" +version = "2022.05.16" with open("README.rst") as readme_file: long_description = readme_file.read()