Skip to content

Commit 9768ffc

Browse files
committed
Prepare release 8.0.23
1 parent 5a62f64 commit 9768ffc

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGES.txt

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

11+
v8.0.23
12+
=======
13+
- WL#14263: Add support for SCRAM-SHA-256
14+
- WL#14238: Deprecate Python 2.7 support
15+
- WL#14215: Replace language in APIs and source code/docs
16+
- WL#14213: Support GSSAPI - Kerberos auth
17+
- BUG#31882419: Fix error when getting the connection ID from a CMySQLConnection
18+
- BUG#29195610: Fix cursor.callproc() using namedtuple and dictionary cursors
19+
- BUG#26834307: Make cursor.fetchone() and cursor.fetchmany() PEP 249 compliant
20+
1121
v8.0.22
1222
=======
1323

LICENSE.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Introduction
1010
third-party software which may be included in this distribution of
1111
MySQL Connector/Python 8.0.
1212

13-
Last updated: July 2020
13+
Last updated: October 2020
1414

1515
Licensing Information
1616

@@ -58,8 +58,10 @@ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
5858
either express or implied. See the License for the specific language
5959
governing permissions and limitations under the License.
6060

61-
=====================================================================
62-
=====================================================================
61+
62+
======================================================================
63+
======================================================================
64+
6365

6466
GNU GENERAL PUBLIC LICENSE
6567
Version 2, June 1991
@@ -409,8 +411,8 @@ you may consider it more useful to permit linking proprietary
409411
applications with the library. If this is what you want to do, use
410412
the GNU Lesser General Public License instead of this License.
411413

412-
=====================================================================
413-
=====================================================================
414+
======================================================================
415+
======================================================================
414416

415417
The Universal FOSS Exception, Version 1.0
416418

cpydist/data/rpm/mysql-connector-python.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
%{?extra_link_args: %global extra_link_args %{extra_link_args}}
6262

6363
# set version if not defined through 'rpmbuild'
64-
%{!?version: %global version 8.0.22}
64+
%{!?version: %global version 8.0.23}
6565

6666
%global with_openssl_opts ""
6767

@@ -290,6 +290,9 @@ rm -rf %{buildroot}
290290
%{python3_sitearch}/_mysqlxpb.cpython*.so
291291

292292
%changelog
293+
* Fri Oct 9 2020 Nuno Mariz <nuno.mariz@oracle.com> - 8.0.23-1
294+
- Updated for 8.0.23
295+
293296
* Mon Sep 07 2020 Kent Boortz <kent.boortz@oracle.com> - 8.0.22-1
294297
- Updated for 8.0.22
295298
- Still provide "mysql-connector-python-cext"

lib/mysql/connector/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysql.connector.version.
3333
"""
3434

35-
VERSION = (8, 0, 22, '', 1)
35+
VERSION = (8, 0, 23, '', 1)
3636

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

0 commit comments

Comments
 (0)