From b4479359145ac81cf23acd2102c05ff761ab48e8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 10 Jan 2022 02:19:45 +0000 Subject: [PATCH] Release 2022.01.09 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9d07507..92f452a2 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.01.09 + +### Changed +- Fix broken center align of image links in README ([#3522](https://github.com/cookiecutter/cookiecutter-django/pull/3522)) + ## 2022.01.07 ### Fixed diff --git a/setup.py b/setup.py index e86a2cf7..7a553805 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.01.07" +version = "2022.01.09" with open("README.rst") as readme_file: long_description = readme_file.read()