diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c5ccc03..680a1893 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2024.05.30 + + +### Updated + +- Update uvicorn to 0.30.0 ([#5101](https://github.com/cookiecutter/cookiecutter-django/pull/5101)) + ## 2024.05.29 diff --git a/setup.py b/setup.py index 49e644a9..b98443f0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2024.05.29" +version = "2024.05.30" with open("README.md") as readme_file: long_description = readme_file.read()