From 1596b65a39d0205de467675e5613ee04c9ca9a2e Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Wed, 1 Jun 2022 09:11:14 -0700 Subject: [PATCH 1/2] Update redis from 4.3.1 to 4.3.2 --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 0b0f34a7d..0886d1c7f 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -12,7 +12,7 @@ argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==6.1.0 # https://github.com/evansd/whitenoise {%- endif %} -redis==4.3.1 # https://github.com/redis/redis-py +redis==4.3.2 # https://github.com/redis/redis-py {%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %} hiredis==2.0.0 # https://github.com/redis/hiredis-py {%- endif %} From 8f66cad1b45d2ad553c0f75d0cbac896aed4d4a9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 2 Jun 2022 02:49:02 +0000 Subject: [PATCH 2/2] Release 2022.06.01 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 219ba76e2..f06d6bff7 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.06.01 + +### Updated +- Update redis to 4.3.2 ([#3726](https://github.com/cookiecutter/cookiecutter-django/pull/3726)) + ## 2022.05.24 ### Updated diff --git a/setup.py b/setup.py index 34341ad8e..c30829dbf 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.24" +version = "2022.06.01" with open("README.rst") as readme_file: long_description = readme_file.read()