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

Commit 58bafe4

Browse files
committed
Prepare for 2.1.3 release
1 parent f19479b commit 58bafe4

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

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.2'
62+
version = u'2.1.3'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'2.1.2'
64+
release = u'2.1.3'
6565

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

docs/release-notes.rst

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

4+
2.1.3 (Apr 24 2021)
5+
-------------------
6+
7+
* Add example script pipelin-readonly-replica.py to show how to use replica nodes to offload read commands from primary node
8+
* max_connection now defaults to 50 in ClusterBlockingConnectionPool to avoid issue with infinite loop in queue mechanism
9+
* Using read replica for read commands inside pipeline is now better supported. Feature might be unstable to use as own risk.
10+
411
2.1.2 (Apr 18 2021)
512
-------------------
613

rediscluster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def int_or_str(value):
3333

3434

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

3939
__all__ = [

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.2",
23+
version="2.1.3",
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)