Release 2023.04.03

This commit is contained in:
github-actions 2023-04-04 02:18:27 +00:00
parent 4641830430
commit 1cba3b62e0
2 changed files with 9 additions and 1 deletions

View File

@ -3,6 +3,14 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER -->
## 2023.04.03
### Changed
- fix: Syntax for ignoring specific noqa errors ([#4250](https://github.com/cookiecutter/cookiecutter-django/pull/4250))
### Updated
- Update psycopg2-binary to 2.9.6 ([#4249](https://github.com/cookiecutter/cookiecutter-django/pull/4249))
- Update psycopg2 to 2.9.6 ([#4248](https://github.com/cookiecutter/cookiecutter-django/pull/4248))
## 2023.04.01
### Updated

View File

@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup
# We use calendar versioning
version = "2023.04.01"
version = "2023.04.03"
with open("README.rst") as readme_file:
long_description = readme_file.read()