Skip to content

Commit 1d940a6

Browse files
committed
bump version and update changes
1 parent 4347fc8 commit 1d940a6

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

CHANGES.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Changes
22
-------
33

4+
0.0.20 (2018-07-06)
5+
^^^^^^^^^^^^^^^^^^^
6+
7+
* Fixed connect_timeout #360
8+
9+
* Fixed support for SQLA executemany #324
10+
11+
* Fix the python 3.7 compatibility #357
12+
13+
* Fixed reuse connections when StreamReader has an exception #339
14+
15+
* Fixes warning when inserting binary strings #326
16+
17+
18+
0.0.19 (2018-07-12)
19+
^^^^^^^^^^^^^^^^^^^
20+
21+
* See v0.0.18
22+
23+
24+
0.0.18 (2018-07-09)
25+
^^^^^^^^^^^^^^^^^^^
26+
27+
* Updated to support latest PyMySQL changes.
28+
29+
* aiomysql now sends client connection info.
30+
31+
* MySQL8+ Support including sha256_password and cached_sha2_password authentication plugins.
32+
33+
* Default max packet length sent to the server is no longer 1.
34+
35+
* Fixes issue where cursor.nextset can hang on query sets that raise errors.
36+
37+
438
0.0.17 (2018-07-06)
539
^^^^^^^^^^^^^^^^^^^
640

aiomysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from .cursors import Cursor, SSCursor, DictCursor, SSDictCursor
3434
from .pool import create_pool, Pool
3535

36-
__version__ = '0.0.19'
36+
__version__ = '0.0.20'
3737

3838
__all__ = [
3939

0 commit comments

Comments
 (0)