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

Commit 73f27ed

Browse files
committed
Set correct release version. Add a few lines to release notes with changes done recently.
1 parent 1cb65cb commit 73f27ed

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/release-notes.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ Release Notes
2929
* New feature, host_port_remap. Send in a remapping configuration to RedisCluster instance where the nodes configuration recieved from the redis cluster can be altered to allow for connection in certain circumstances. See new section in client.rst in docs/ for usage example.
3030
* When a slot is not covered by the cluster, it will not raise SlotNotCoveredError instead of the old generic RedisClusterException. The client will not attempt to rebuild the cluster layout a few times before giving up and raising that exception to the user. (#350)
3131
* CLIENT SETNAME is now possible to use from the client instance. For setting the name for all connections from the client by default, see issue #802 in redis-py repo for the change that was implemented in redis-py 3.4.0.
32+
* Rewrote implemented commands documentation to mimic the redis.io commands documentation and describe each command and any additional implementation that has been made.
33+
* Added RTD theme to the rendered output when running the documentation in local dev mode.
34+
* Added some basic logging to the client that should make it easier to debug and track down minor issues around the main execution loop. See docs/logging.rst for implementation example into your own code.
35+
* Seperated some of the exception handling inside the main execution loop to get more fine grained controll what to do at certain errors.
3236

3337

3438
2.0.0 (Aug 12, 2019)

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.0.99rc2",
23+
version="2.1.0",
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)