8000 0.6.7 · gcmcom/PyMySQL@a4b86e3 · GitHub
[go: up one dir, main page]

Skip to content

Commit a4b86e3

Browse files
committed
0.6.7
1 parent a36b0a8 commit a4b86e3

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG

Lines changed: 17 additions & 0 deletions
< 8000 td data-grid-cell-id="diff-ecec88c33adb7591ee6aa88e29b62ad52ef443611cba5e0f0ecac9b5725afdba-empty-empty-0" data-selected="false" role="gridcell" style="background-color:var(--bgColor-accent-muted, var(--color-accent-subtle));flex-grow:1" tabindex="-1" valign="top" class="focusable-grid-cell diff-hunk-cell left-side" colSpan="4">
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changes
22

3+
## 0.6.7
4+
5+
Release date: 2015-09-30
6+
7+
* Allow self signed certificate
8+
* Add max_allowed_packet option
9+
* Fix error when bytes in executemany
10+
* Support geometry type
11+
* Add coveralls badge to README
12+
* Fix some bugs relating to warnings
13+
* Add Cursor.mogrify() method
14+
* no_delay option is deprecated and True by default
15+
* Fix options from my.cnf overrides options from arguments
16+
* Allow socket like object. (It's not feature for end users)
17+
* Strip quotes while reading options from my.cnf file
18+
* Fix encoding issue in executemany()
19+
320
## 0.6.6
421

522
* Add context manager to cursor

pymysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
'''
2525

26-
VERSION = (0, 6, 6, None)
26+
VERSION = (0, 6, 7, None)
2727

2828
from ._compat import text_type, JYTHON, IRONPYTHON
2929
from .constants import FIELD_TYPE

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
'Programming Language :: Python :: 3',
2828
'Programming Language :: Python :: 3.3',
2929
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.5',
3031
'Programming Language :: Python :: Implementation :: CPython',
31-
'Programming Language :: Python :: Implementation :: IronPython',
3232
'Programming Language :: Python :: Implementation :: PyPy',
3333
'Development Status :: 4 - Beta',
3434
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)
0