From 30b4555b93574cd3f7839e88f3cd59752ca4ffb1 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Tue, 26 Oct 2021 09:57:34 +0300 Subject: [PATCH] beta2 version and CHANGES update --- CHANGES | 7 +++++++ redis/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 801e2f1253..b4372be34e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +# DEPRECATED + +This file is historic. Starting with redis-py 4.0.0b1, please see the GitHub releases page at +https://github.com/redis/redis-py/releases. + +------------------------------------------------------------------------------------------------ + * (in development) * BACKWARDS INCOMPATIBLE: Removed support for end of life Python 2.7. #1318 * BACKWARDS INCOMPATIBLE: All values within Redis URLs are unquoted via diff --git a/redis/__init__.py b/redis/__init__.py index a3b5eb67e3..3e7831e87b 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -31,7 +31,7 @@ def int_or_str(value): return value -__version__ = '4.0.0b1' +__version__ = '4.0.0b2' VERSION = tuple(map(int_or_str, __version__.split('.'))) __all__ = [