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 +17
-7
lines changed
Expand file tree Collapse file tree 6 files changed +17
-7
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
22
33 Permission is hereby granted, free of charge, to any person
44 obtaining a copy of this software and associated documentation
Original file line number Diff line number Diff line change 6666
6767## License & Authors
6868
69- Copyright (c) 2013-2020 Johan Andersson
69+ Copyright (c) 2013-2021 Johan Andersson
7070
7171MIT (See docs/License.txt file)
7272
Original file line number Diff line number Diff line change 5959# built documents.
6060#
6161# The short X.Y version.
62- version = u'2.1.0 '
62+ version = u'2.1.1 '
6363# The full version, including alpha/beta/rc tags.
64- release = u'2.1.0 '
64+ release = u'2.1.1 '
6565
6666# The language for content autogenerated by Sphinx. Refer to documentation
6767# for a list of supported languages.
Original file line number Diff line number Diff line change 11Release Notes
22=============
33
4- 2.1.0 (May **, 2020)
4+ 2.1.1 (Apr 18 2021)
5+
6+ * ClusterPipeline is now exposed when doing "from rediscluster import *"
7+ * Fix issue where connection would be None in some cases when connection pool fails to initialize
8+ * Ported in a fix from redis-py where it now checks if a connection is ready or not before returning the connection for usage
9+ * ClusterFailover command option is no longer mandatory but optional as it is intended
10+ * Fixed "SLOWLOG GET" kwarg command where it failed on decode_responses
11+ * BaseException is now caught when executing commands and it will disconnect and the connection before raising the exception.
12+ * Logging exception on ReseponseError when doing the initial connection to the startup_nodes instances
13+
14+ 2.1.0 (Sept 26, 2020)
515--------------------
616
717 * Add new config option for Client and Pipeline classes to controll how many attempts will be made before bailing out from a ClusterDownError.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def int_or_str(value):
3333
3434
3535# Major, Minor, Fix version
36- __version__ = '2.1.0 '
36+ __version__ = '2.1.1 '
3737VERSION = tuple (map (int_or_str , __version__ .split ('.' )))
3838
3939__all__ = [
Original file line number Diff line number Diff line change 2020
2121setup (
2222 name = "redis-py-cluster" ,
23- version = "2.1.0 " ,
23+ version = "2.1.1 " ,
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" ,
You can’t perform that action at this time.
0 commit comments