summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-10-26 10:19:00 +0300
committerGitHub <noreply@github.com>2021-10-26 10:19:00 +0300
commit20f71abcbf9af4d628c2e1ae1ad07457f8f31bef (patch)
tree1bb80bfa30892239c037132aaf0127c6f0183b79
parent70ef9ec68f9163c86d4cace2941e2f0ae4ce8525 (diff)
downloadredis-py-20f71abcbf9af4d628c2e1ae1ad07457f8f31bef.tar.gz
beta2 version and CHANGES update (#1643)v4.0.0b2
-rw-r--r--CHANGES7
-rw-r--r--redis/__init__.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 801e2f1..b4372be 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 a3b5eb6..3e7831e 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__ = [