Skip to content

Commit 5f8dfd5

Browse files
author
Geert Vanderkelen
committed
Prepare release 2.0.1
1 parent 60a32f4 commit 5f8dfd5

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGES.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ Copyright (c) 2009, 2014, 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.0.1
12+
======
13+
14+
- WL7954: Add support for RANGE_STRING Fabric sharding type
15+
- WL7955: Add support for RANGE_DATETIME Fabric sharding type
16+
- BUG19440592: Fix exception not captured when SSL is unavailable
17+
- BUG19481761: Fix option files with !include with trailing newline
18+
- BUG18798953: Add MySQLConnection.shutdown() to abruply close connection
19+
- BUG19168737: Fix unsupported connection argument error with option files
20+
- BUG19282158: Fix NULL values to work with prepared statements
21+
- BUG19179711: Fix using '%s' in django backend
22+
- BUG19169143: Fix raising error with duplicate option files
23+
- BUG19170287: Fix duplicate section error with Python v3
24+
- BUG19163169: Add support for Django 1.7
25+
- BUG19225481: Fix floating point inaccuracy with Python v2
26+
- BUG19164627: Fix cursor trying to decode linestring data as utf-8
27+
28+
1129
v2.0.0a1
1230
========
1331

cpyint

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
as mysql.connector.version.
2727
"""
2828

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

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

0 commit comments

Comments
 (0)