summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-01-28 16:21:29 -0800
committerAndy McCurdy <andy@andymccurdy.com>2019-01-28 16:21:29 -0800
commita051ddb693791ee54e61d8d1557d16fe7089520f (patch)
tree5272579d2081cf9bbf2d40c3652881e9e90b6952
parent2f3afb0a2b6adaa7287173f07ea5b7fee8551083 (diff)
downloadredis-py-a051ddb693791ee54e61d8d1557d16fe7089520f.tar.gz
3.1.03.1.0
-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__ = [