Skip to content

Commit 85e7e9a

Browse files
committed
Prepare release 8.0.25
1 parent d1e89fd commit 85e7e9a

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGES.txt

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

11+
v8.0.25
12+
=======
13+
14+
This release contains no functional changes and is published to align
15+
the version number with the MySQL Server 8.0.25 release.
16+
1117
v8.0.24
1218
=======
19+
1320
- WL#14424: Improve timeout error messages
1421
- WL#14240: Remove Python 3.5 support
1522
- WL#14239: Remove Python 2.7 support
@@ -29,6 +36,7 @@ v8.0.24
2936

3037
v8.0.23
3138
=======
39+
3240
- WL#14263: Add support for SCRAM-SHA-256
3341
- WL#14238: Deprecate Python 2.7 support
3442
- WL#14215: Replace language in APIs and source code/docs

LICENSE.txt

Lines changed: 1 addition & 1 deletion
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: January 2021
13+
Last updated: April 2021
1414

1515
Licensing Information
1616

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

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

4848
# set version if not defined through 'rpmbuild'
49-
%{!?version: %global version 8.0.24}
49+
%{!?version: %global version 8.0.25}
5050

5151
%global with_openssl_opts ""
5252

@@ -195,6 +195,9 @@ rm -f %{with_mysql_capi}/lib*/{,mysql/}plugin/authentication_ldap_sasl_client.*
195195
%{python3_sitearch}/_mysqlxpb.cpython*.so
196196

197197
%changelog
198+
* Thu Apr 15 2021 Nuno Mariz <nuno.mariz@oracle.com> - 8.0.25-1
199+
- Updated for 8.0.25
200+
198201
* Mon Feb 1 2021 Sreedhar Sreedhargadda <sreedhar.sreedhargadda@oracle.com> - 8.0.24-2
199202
- Updated for 8.0.24
200203
- Fix for el8 pkgver_lite

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, 24, '', 1)
35+
VERSION = (8, 0, 25, '', 1)
3636

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

0 commit comments

Comments
 (0)