This commit is contained in:
Inada Naoki
2018-12-04 19:05:25 +09:00
parent 45bf8797d1
commit 40b8809c8f
3 changed files with 27 additions and 4 deletions

View File

@ -1,3 +1,27 @@
======================
What's new in 1.3.14
======================
Release: 2018-12-04
* Support static linking of MariaDB Connector/C (#265)
* Better converter for Decimal and Float (#267, #268, #273, #286)
* Add ``Connection._get_native_connection`` for XTA project (#269)
* Fix SEGV on MariaDB Connector/C when ``Connection.close()`` is called
for closed connection. (#270, #272, #276)
* Fix ``Connection.client_flag`` (#266)
* Fix SSCursor may raise same exception twice (#282)
* ``waiter`` option is now deprecated. (#285)
* Fixed SSL support is not detected when built with MySQL < 5.1 (#291)
======================
What's new in 1.3.13
======================

View File

@ -1,6 +1,6 @@
[metadata]
version: 1.3.13
version_info: (1,3,13,'final',0)
version: 1.3.14
version_info: (1,3,14,'final',0)
description: Python interface to MySQL
author: Andy Dustman
author_email: farcepest@gmail.com
@ -27,6 +27,7 @@ classifiers:
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Database
Topic :: Database :: Database Engines/Servers
py_modules:

View File

@ -2,9 +2,7 @@
import os
import io
import sys
import distutils.errors
import setuptools
if os.name == "posix":