This repository was archived by the owner on Jan 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +27
-21
lines changed Expand file tree Collapse file tree 6 files changed +27
-21
lines changed Original file line number Diff line number Diff line change 1
- Copyright (c) 2014-2020 Johan Andersson
1
+ Copyright (c) 2014-2021 Johan Andersson
2
2
3
3
Permission is hereby granted, free of charge, to any person
4
4
obtaining a copy of this software and associated documentation
Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = u'2.1.1 '
62
+ version = u'2.1.2 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = u'2.1.1 '
64
+ release = u'2.1.2 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
Licensing
2
2
---------
3
3
4
- Copyright (c) 2013-2020 Johan Andersson
4
+ Copyright (c) 2013-2021 Johan Andersson
5
5
6
6
MIT (See docs/License.txt file)
7
7
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ 2.1.2 (Apr 18 2021)
5
+ -------------------
6
+
7
+ * Fixed bug where "from rediscluster import *" would not work correct
8
+
4
9
2.1.1 (Apr 18 2021)
10
+ -------------------
5
11
6
12
* ClusterPipeline is now exposed when doing "from rediscluster import *"
7
13
* Fix issue where connection would be None in some cases when connection pool fails to initialize
Original file line number Diff line number Diff line change @@ -33,25 +33,25 @@ def int_or_str(value):
33
33
34
34
35
35
# Major, Minor, Fix version
36
- __version__ = '2.1.1 '
36
+ __version__ = '2.1.2 '
37
37
VERSION = tuple (map (int_or_str , __version__ .split ('.' )))
38
38
39
39
__all__ = [
40
- AskError ,
41
- ClusterBlockingConnectionPool ,
42
- ClusterConnection ,
43
- ClusterConnectionPool ,
44
- ClusterCrossSlotError ,
45
- ClusterDownError ,
46
- ClusterDownException ,
47
- ClusterError ,
48
- ClusterPipeline ,
49
- MasterDownError ,
50
- MovedError ,
51
- RedisCluster ,
52
- RedisClusterError ,
53
- RedisClusterException ,
54
- TryAgainError ,
40
+ ' AskError' ,
41
+ ' ClusterBlockingConnectionPool' ,
42
+ ' ClusterConnection' ,
43
+ ' ClusterConnectionPool' ,
44
+ ' ClusterCrossSlotError' ,
45
+ ' ClusterDownError' ,
46
+ ' ClusterDownException' ,
47
+ ' ClusterError' ,
48
+ ' ClusterPipeline' ,
49
+ ' MasterDownError' ,
50
+ ' MovedError' ,
51
+ ' RedisCluster' ,
52
+ ' RedisClusterError' ,
53
+ ' RedisClusterException' ,
54
+ ' TryAgainError' ,
55
55
]
56
56
57
57
# Set default logging handler to avoid "No handler found" warnings.
Original file line number Diff line number Diff line change 20
20
21
21
setup (
22
22
name = "redis-py-cluster" ,
23
- version = "2.1.1 " ,
23
+ version = "2.1.2 " ,
24
24
description = "Library for communicating with Redis Clusters. Built on top of redis-py lib" ,
25
25
long_description = readme + '\n \n ' + history ,
26
26
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments