Skip to content

Commit c506fd7

Browse files
committed
Prepare release 2.1.6
1 parent a3af525 commit c506fd7

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGES.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,23 @@ MySQL Connector/Python 2.1 - Release Notes & Changes
33
====================================================
44

55
MySQL Connector/Python
6-
Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
6+
Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved.
77

88
Full release notes:
99
http://dev.mysql.com/doc/relnotes/connector-python/en/
1010

11+
v2.1.6
12+
======
13+
14+
- BUG#25726671: Fix compatibility issues with the latest Django versions
15+
- BUG#25558885: Set default connection timeout to pure connector/python
16+
- BUG#25397650: Verify server certificate only if ssl_verify_cert is True
17+
- BUG#25589496: Don't convert to unicode if non-ascii data is present
18+
- BUG#25383644: Add connection back to pool on exception
19+
- BUG#22476689: Importing world.sql fails with cext enabled
20+
- BUG#20736339: Expect multiple include directories from mysql_config
21+
- BUG#19685386: C extension tests are failing using MySQL 5.7.4
22+
1123
v2.1.5
1224
======
1325

README.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MySQL Connector/Python 2.1
33
==========================
44

55
MySQL Connector/Python
6-
Copyright (c) 2009, 2016, Oracle and/or its affiliates. All rights reserved.
6+
Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved.
77

88
License information can be found in the LICENSE.txt file.
99

@@ -28,7 +28,7 @@ doubt, this particular copy of the software is released
2828
under the version 2 of the GNU General Public License.
2929
MySQL Connector/Python is brought to you by Oracle.
3030

31-
Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
31+
Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
3232

3333
License information can be found in the LICENSE.txt file.
3434

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, 2016, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2012, 2017, 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, 5, '', 0)
29+
VERSION = (2, 1, 6, '', 0)
3030

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

0 commit comments

Comments
 (0)