diff --git a/CHANGES b/CHANGES index 1556710df5..693593e54b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -* 2.10.4 +* 2.10.5 * Allow URL encoded parameters in Redis URLs. Characters like a "/" can now be URL encoded and redis-py will correctly decode them. Thanks Paul Keene. @@ -24,6 +24,8 @@ the maxclients limit being exceeded. Thanks Roman Karpovich. * max_connections can now be set when instantiating client instances. Thanks Ohad Perry. +* 2.10.4 + (skipped due to a PyPI snafu) * 2.10.3 * Fixed a bug with the bytearray support introduced in 2.10.2. Thanks Josh Owen. diff --git a/redis/__init__.py b/redis/__init__.py index 5e125098f3..11281ba50b 100644 --- a/redis/__init__.py +++ b/redis/__init__.py @@ -22,7 +22,7 @@ ) -__version__ = '2.10.4' +__version__ = '2.10.5' VERSION = tuple(map(int, __version__.split('.'))) __all__ = [ diff --git a/setup.cfg b/setup.cfg index 5e4090017a..2a9acf13da 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ -[wheel] +[bdist_wheel] universal = 1