Skip to content

Commit 62a75ba

Browse files
committed
Bump version: v1.3.1;
1 parent 920aa30 commit 62a75ba

File tree

8 files changed

+27
-10
lines changed

8 files changed

+27
-10
lines changed

CHANGES.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@ Changes
33

44
.. towncrier release notes start
55

6+
1.3.1 (2019-12-02)
7+
^^^^^^^^^^^^^^^^^^
8+
Bugfixes
9+
~~~~~~~~
10+
11+
- Fix transaction data decoding
12+
(see `#657 <https://github.com/aio-libs/aioredis/issues/657>`_);
13+
- Fix duplicate calls to ``pool.wait_closed()`` upon ``create_pool()`` exception.
14+
(see `#671 <https://github.com/aio-libs/aioredis/issues/671>`_);
15+
16+
Deprecations and Removals
17+
~~~~~~~~~~~~~~~~~~~~~~~~~
18+
19+
- Drop explicit loop requirement in API.
20+
Deprecate ``loop`` argument.
21+
Throw warning in Python 3.8+ if explicit ``loop`` is passed to methods.
22+
(see `#666 <https://github.com/aio-libs/aioredis/issues/666>`_);
23+
24+
Misc
25+
~~~~
26+
27+
- `#643 <https://github.com/aio-libs/aioredis/issues/643>`_,
28+
`#646 <https://github.com/aio-libs/aioredis/issues/646>`_,
29+
`#648 <https://github.com/aio-libs/aioredis/issues/648>`_;
30+
31+
632
1.3.0 (2019-09-24)
733
^^^^^^^^^^^^^^^^^^
834
Features

CHANGES/643.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/646.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/648.misc

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/657.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/666.removal

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGES/671.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

aioredis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
)
2929

3030

31-
__version__ = '1.3.0'
31+
__version__ = '1.3.1'
3232

3333
__all__ = [
3434
# Factories

0 commit comments

Comments
 (0)