This commit is contained in:
INADA Naoki
2016-01-14 13:10:14 +09:00
parent 342fcec29b
commit 6bc00d697f
2 changed files with 9 additions and 3 deletions

View File

@@ -1,11 +1,17 @@
# Changes
## 0.7.1
Release date: 2016-01-14
* Fix auth fail with MySQL 5.1
* Fix escaping unicode fails on Python 2
## 0.7
Release date: 2016-01-10
Notable changes:
* Faster binary escaping
* Add `"_binary" prefix` to string literal for binary types.
binary types are: `bytearray` on Python 2, `bytes` and `bytearray` on Python 3.

View File

@@ -33,7 +33,7 @@ from .times import Date, Time, Timestamp, \
DateFromTicks, TimeFromTicks, TimestampFromTicks
VERSION = (0, 7, 0, None)
VERSION = (0, 7, 1, None)
threadsafety = 1
apilevel = "2.0"
paramstyle = "pyformat"