This commit is contained in:
INADA Naoki
2017-04-06 03:07:07 +09:00
parent 0e01158fb8
commit f6d2853649
3 changed files with 12 additions and 1 deletions

View File

@@ -1,5 +1,14 @@
# Changes
## 0.7.11
Release date: 2017-04-06
* Fixed Connection.close() failed when failed to send COM_CLOSE packet.
* Cursor.executemany() accepts query ends with semicolon.
* ssl parameters can be read from my.cnf.
## 0.7.10
Release date: 2017-02-14

View File

@@ -35,7 +35,7 @@ from .times import (
DateFromTicks, TimeFromTicks, TimestampFromTicks)
VERSION = (0, 7, 10, None)
VERSION = (0, 7, 11, None)
threadsafety = 1
apilevel = "2.0"
paramstyle = "pyformat"

View File

@@ -26,6 +26,8 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',