Skip to content

Commit

Permalink
release 1.1.6
Browse files Browse the repository at this point in the history
changes:

    * Fixbug: parsing stream messgae with empty payload will cause error(#116)

    * Fixbug: Let ClusterConnectionPool handle skip_full_coverage_check (#118)

    * New: threading local issue in coroutine, use contextvars instead of threading local in case of the safety of thread local mechanism being broken by coroutine (#120)

    * New: support Python 3.8
  • Loading branch information
NoneGG committed Dec 7, 2019
1 parent 0537f88 commit 1912ae4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 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.5'
__version__ = '1.1.6'

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

Expand Down
9 changes: 8 additions & 1 deletion docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,11 @@ master
-----
* new: Dev conn pool max idle time (#111) release connection if max-idle-time exceeded
* update: discard travis-CI
* Fix bug: new stream id used for test_streams
* Fix bug: new stream id used for test_streams

1.1.6
-----
* Fixbug: parsing stream messgae with empty payload will cause error(#116)
* Fixbug: Let ClusterConnectionPool handle skip_full_coverage_check (#118)
* New: threading local issue in coroutine, use contextvars instead of threading local in case of the safety of thread local mechanism being broken by coroutine (#120)
* New: support Python 3.8

0 comments on commit 1912ae4

Please sign in to comment.