summaryrefslogtreecommitdiff
path: root/redis
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-11-15 13:42:48 +0200
committerGitHub <noreply@github.com>2021-11-15 13:42:48 +0200
commitc02d7209be5aeefe27c7ac2e740dafc4d969ec47 (patch)
tree14ef94c6bbd3ee341d790ae56ec6df008ce413f0 /redis
parent9235a72fa6545a9586e42d0a46f2f72b34fab1db (diff)
downloadredis-py-c02d7209be5aeefe27c7ac2e740dafc4d969ec47.tar.gz
4.0.0 (#1708)v4.0.0
* 4.0.0
Diffstat (limited to 'redis')
-rw-r--r--redis/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index c0dd690..5d63543 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -37,7 +37,9 @@ def int_or_str(value):
return value
-__version__ = '4.0.0rc2'
+__version__ = "4.0.0"
+
+
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [