Skip to content

Commit abb266e

Browse files
committed
Prepare release 9.0.0
1 parent be7098d commit abb266e

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

mysql-connector-python/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.4.0}
64+
%{!?version: %global version 9.0.0}
6565

6666
%global with_openssl_opts ""
6767

@@ -242,6 +242,9 @@ cd mysql-connector-python
242242
%{python3_sitearch}/_mysql_connector.cpython*.so
243243
244244
%changelog
245+
* Fri May 31 2024 Oscar Pacheco <oscar.p.pacheco@oracle.com> - 9.0.0-1
246+
- Updated for 9.0.0
247+
245248
* Wed Feb 28 2024 Oscar Pacheco <oscar.p.pacheco@oracle.com> - 8.4.0-1
246249
- Updated for 8.4.0
247250

mysql-connector-python/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, 4, 0, "", 1)
35+
VERSION = (9, 0, 0, "", 1)
3636

3737
# pylint: disable=consider-using-f-string
3838
if VERSION[3] and VERSION[4]:

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

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

6565
# set version if not defined through 'rpmbuild'
66-
%{!?version: %global version 8.4.0}
66+
%{!?version: %global version 9.0.0}
6767

6868

6969
# if true set byte_code_only to --byte_code_only
@@ -238,6 +238,9 @@ sed -i -e '/protobuf/d' %{buildroot}%{python3_sitearch}/mysqlx_connector_python-
238238
%{python3_sitearch}/_mysqlxpb.cpython*.so
239239
240240
%changelog
241+
* Fri May 31 2024 Oscar Pacheco <oscar.p.pacheco@oracle.com> - 9.0.0-1
242+
- Updated for 9.0.0
243+
241244
* Wed Feb 28 2024 Oscar Pacheco <oscar.p.pacheco@oracle.com> - 8.4.0-1
242245
- Updated for 8.4.0
243246

mysqlx-connector-python/lib/mysqlx/version.py

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

35-
VERSION = (8, 4, 0, "", 1)
35+
VERSION = (9, 0, 0, "", 1)
3636

3737
# pylint: disable=consider-using-f-string
3838
if VERSION[3] and VERSION[4]:

0 commit comments

Comments
 (0)