8000 0.7.11 · randybrown-github/PyMySQL@f6d2853 · GitHub
[go: up one dir, main page]

Skip to content

Commit f6d2853

Browse files
committed
0.7.11
1 parent 0e01158 commit f6d2853

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changes
22

3+
## 0.7.11
4+
5+
Release date: 2017-04-06
6+
7+
* Fixed Connection.close() failed when failed to send COM_CLOSE packet.
8+
* Cursor.executemany() accepts query ends with semicolon.
9+
* ssl parameters can be read from my.cnf.
10+
11+
312
## 0.7.10
413

514
Release date: 2017-02-14

pymysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
DateFromTicks, TimeFromTicks, TimestampFromTicks)
3636

3737

38-
VERSION = (0, 7, 10, None)
38+
VERSION = (0, 7, 11, None)
3939
threadsafety = 1
4040
apilevel = "2.0"
4141
paramstyle = "pyformat"

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
'Programming Language :: Python :: 3',
2727
'Programming Language :: Python :: 3.4',
2828
'Programming Language :: Python :: 3.5',
29+
'Programming Language :: Python :: 3.6',
30+
'Programming Language :: Python :: 3.7',
2931
'Programming Language :: Python :: Implementation :: CPython',
3032
'Programming Language :: Python :: Implementation :: PyPy',
3133
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)
0