Release 2023.01.10

This commit is contained in:
github-actions 2023-01-11 02:42:18 +00:00
parent c4291e7522
commit 7b93aac857
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER -->
## 2023.01.10
### Changed
- Add dump.rdb to gitignore ([#4062](https://github.com/cookiecutter/cookiecutter-django/pull/4062))
### Fixed
- Exclude `.venv` from code style checks ([#4069](https://github.com/cookiecutter/cookiecutter-django/pull/4069))
### Updated
- Update hiredis to 2.1.1 ([#4070](https://github.com/cookiecutter/cookiecutter-django/pull/4070))
## 2023.01.08
### Updated

View File

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