Skip to content

Commit 2d7f4eb

Browse files
committed
Prepare release 2.1.3
1 parent 4f888cf commit 2d7f4eb

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

CHANGES.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,36 @@ Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved.
88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-python/en/
1010

11+
v2.1.3
12+
======
13+
14+
- BUG#21090014: Fix handshake with MySQL server 5.5.8
15+
- BUG#21054559: Using a binary field in Django raises an exception
16+
- BUG#21054556: Attribute error raised with Django
17+
- BUG#20638660: The account_locked needs value for MySQL 5.7.6
18+
- BUG#20653441: C/Py hangs if a query is killed
19+
- BUG#20987205: C/Py Django backend doesn't work with Django 1.8
20+
21+
v2.1.2b1
22+
========
23+
24+
- WL7956: Support MySQL Protocol connecting to MySQL Fabric
25+
- BUG20462427: Fix receiving large field data from server
26+
- BUG20365619: Fix MySQL version detection for C Extension
27+
- BUG20301989: Fix conversion of empty set
28+
- BUG20407036: Fix incorrect arguments to mysld_stmt_execute error
29+
- BUG20106629: Support Django Safetext and SafeBytes type
30+
- BUG20324089: Fix HASH baesd sharding with MySQL Fabric
31+
- BUG20217174: Fix install command honouring --install-lib when given
32+
- BUG19777815: Add support for warnings with MySQLCursor.callproc()
33+
- BUG19331658: Fix connection pooling with fabric
34+
- BUG19972427: Fix creating of redundant connections in Django
35+
- BUG20022533: Fix failing Django inspectdb command with C/Python
36+
- BUG19703022: Fix using passwords with integers only in option files
37+
- BUG19803702: Fix reporting errors with non-ascii characters
38+
- BUG20834643: Attribute Error while promoting servers using MySQL Fabric
39+
- BUG20811802: Fix buffered named tuple cursor with CExtension
40+
1141
v2.1.1a1
1242
========
1343

cpyint

lib/mysql/connector/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# MySQL Connector/Python - MySQL driver written in Python.
2-
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
33

44
# MySQL Connector/Python is licensed under the terms of the GPLv2
55
# <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
@@ -26,7 +26,7 @@
2626
as mysql.connector.version.
2727
"""
2828

29-
VERSION = (2, 1, 1, 'a', 1)
29+
VERSION = (2, 1, 3, '', 0)
3030

3131
if VERSION[3] and VERSION[4]:
3232
VERSION_TEXT = '{0}.{1}.{2}{3}{4}'.format(*VERSION)

0 commit comments

Comments
 (0)