Skip to content

Commit 1c6d661

Browse files
committed
Prepare release 2.2.3
1 parent e5adeee commit 1c6d661

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

CHANGES.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,25 @@ MySQL Connector/Python 2.2 - 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.2.3
12+
======
13+
WL#10452: Add Protobuf C++ extension for Linux variants and Mac OSX
14+
WL#10081: DevAPI: IPv6 support
15+
BUG#25614860: Fix defined_as method in the view creation
16+
BUG#25519251: SelectStatement does not implement order_by() method
17+
BUG#25436568: Update available operators for XPlugin
18+
BUG#24954006: Add missing items in CHANGES.txt
19+
BUG#24953913: Fix unittests that are failing in Linux
20+
BUG#24578507: Fix import error using Python 2.6
21+
BUG#23636962: Fix improper error message when creating a Session
22+
BUG#23568207: Fix default aliases for projection fields
23+
BUG#23567724: Fix operator names
24+
1125
v2.2.2
1226
======
1327

README.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ MySQL Connector/Python 2.2
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

1010

1111
Requirements
1212
============
1313

14-
Python Protobuf (version >= 3.0.0)
14+
Protobuf C++ (version >= 2.6.0)
1515
https://developers.google.com/protocol-buffers/docs/downloads
1616

1717

@@ -35,7 +35,7 @@ doubt, this particular copy of the software is released
3535
under the version 2 of the GNU General Public License.
3636
MySQL Connector/Python is brought to you by Oracle.
3737

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

4040
License information can be found in the LICENSE.txt file.
4141

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, 2015, 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, 2, 2, 'b', 1)
29+
VERSION = (2, 2, 3, 'b', 1)
3030

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

0 commit comments

Comments
 (0)