Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 3b68c18

Browse files
committed
Prepare for 2.1.2 hotfix release
1 parent 94eedfb commit 3b68c18

File tree

6 files changed

+27
-21
lines changed

6 files changed

+27
-21
lines changed

docs/License.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2020 Johan Andersson
1+
Copyright (c) 2014-2021 Johan Andersson
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'2.1.1'
62+
version = u'2.1.2'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'2.1.1'
64+
release = u'2.1.2'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

docs/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Licensing
22
---------
33

4-
Copyright (c) 2013-2020 Johan Andersson
4+
Copyright (c) 2013-2021 Johan Andersson
55

66
MIT (See docs/License.txt file)
77

docs/release-notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
Release Notes
22
=============
33

4+
2.1.2 (Apr 18 2021)
5+
-------------------
6+
7+
* Fixed bug where "from rediscluster import *" would not work correct
8+
49
2.1.1 (Apr 18 2021)
10+
-------------------
511

612
* ClusterPipeline is now exposed when doing "from rediscluster import *"
713
* Fix issue where connection would be None in some cases when connection pool fails to initialize

rediscluster/__init__.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ def int_or_str(value):
3333

3434

3535
# Major, Minor, Fix version
36-
__version__ = '2.1.1'
36+
__version__ = '2.1.2'
3737
VERSION = tuple(map(int_or_str, __version__.split('.')))
3838

3939
__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',
5555
]
5656

5757
# Set default logging handler to avoid "No handler found" warnings.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="redis-py-cluster",
23-
version="2.1.1",
23+
version="2.1.2",
2424
description="Library for communicating with Redis Clusters. Built on top of redis-py lib",
2525
long_description=readme + '\n\n' + history,
2626
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)