summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--redis/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 783f869..bbddbb1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,4 @@
-* 3.1.0 (in development)
+* 3.1.0
* Connection URLs must have one of the following schemes:
redis://, rediss://, unix://. Thanks @jdupl123. #961/#969
* Fixed an issue with retry_on_timeout logic that caused some TimeoutErrors
diff --git a/redis/__init__.py b/redis/__init__.py
index dc78f73..a136a25 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -29,7 +29,7 @@ def int_or_str(value):
return value
-__version__ = '3.0.1'
+__version__ = '3.1.0'
VERSION = tuple(map(int_or_str, __version__.split('.')))
__all__ = [