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

Commit

Permalink
Prepare for 2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Grokzen committed Apr 18, 2021
1 parent 5f7c903 commit 94eedfb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2020 Johan Andersson
Copyright (c) 2014-2021 Johan Andersson

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ True

## License & Authors

Copyright (c) 2013-2020 Johan Andersson
Copyright (c) 2013-2021 Johan Andersson

MIT (See docs/License.txt file)

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.1.0'
version = u'2.1.1'
# The full version, including alpha/beta/rc tags.
release = u'2.1.0'
release = u'2.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
12 changes: 11 additions & 1 deletion docs/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
Release Notes
=============

2.1.0 (May **, 2020)
2.1.1 (Apr 18 2021)

* ClusterPipeline is now exposed when doing "from rediscluster import *"
* Fix issue where connection would be None in some cases when connection pool fails to initialize
* Ported in a fix from redis-py where it now checks if a connection is ready or not before returning the connection for usage
* ClusterFailover command option is no longer mandatory but optional as it is intended
* Fixed "SLOWLOG GET" kwarg command where it failed on decode_responses
* BaseException is now caught when executing commands and it will disconnect and the connection before raising the exception.
* Logging exception on ReseponseError when doing the initial connection to the startup_nodes instances
2.1.0 (Sept 26, 2020)
--------------------

* Add new config option for Client and Pipeline classes to controll how many attempts will be made before bailing out from a ClusterDownError.
Expand Down
2 changes: 1 addition & 1 deletion rediscluster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def int_or_str(value):


# Major, Minor, Fix version
__version__ = '2.1.0'
__version__ = '2.1.1'
VERSION = tuple(map(int_or_str, __version__.split('.')))

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="redis-py-cluster",
version="2.1.0",
version="2.1.1",
description="Library for communicating with Redis Clusters. Built on top of redis-py lib",
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 94eedfb

Please sign in to comment.