Skip to content

Commit

Permalink
release v1.1.8
Browse files Browse the repository at this point in the history
    * Fixbug: connection is disconnected before idel check, valueError will be raised if a connection(not exist) is removed from connection list

    * Fixbug: abstract compat.py to handle import problem of asyncio.future

    * Fixbug: When cancelling a task, CancelledError exception is not propagated to client

    * Fixbug: XREAD command should accept 0 as a block argument

    * Fixbug: In redis cluster mode, XREAD command does not function properly

    * Fixbug: slave connection params when there are no slaves
  • Loading branch information
NoneGG committed Mar 1, 2020
1 parent e3474c2 commit 3e8cdf6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aredis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)


__version__ = '1.1.7'
__version__ = '1.1.8'

VERSION = tuple(map(int, __version__.split('.')))

Expand Down
11 changes: 10 additions & 1 deletion docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,13 @@ master

1.1.7
-----
* Fixbug: ModuleNotFoundError raised when install aredis 1.1.6 with Python3.6
* Fixbug: ModuleNotFoundError raised when install aredis 1.1.6 with Python3.6

1.1.8
-----
* Fixbug: connection is disconnected before idel check, valueError will be raised if a connection(not exist) is removed from connection list
* Fixbug: abstract compat.py to handle import problem of asyncio.future
* Fixbug: When cancelling a task, CancelledError exception is not propagated to client
* Fixbug: XREAD command should accept 0 as a block argument
* Fixbug: In redis cluster mode, XREAD command does not function properly
* Fixbug: slave connection params when there are no slaves
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def build_extension(self, ext):

setup(
name='aredis',
version='1.1.7',
version='1.1.8',
description='Python async client for Redis key-value store',
long_description=long_description,
url='https://github.com/NoneGG/aredis',
Expand Down

0 comments on commit 3e8cdf6

Please sign in to comment.