Skip to content

Commit

Permalink
Prepare release 9.1.0
Browse files Browse the repository at this point in the history
Update connector version to 9.1.0.

Change-Id: I60d874f778e7108c20cc6ecf7e9db2ba30426205
  • Loading branch information
oscpache committed Sep 11, 2024
1 parent 61bccb0 commit da48d02
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
%{?extra_link_args: %global extra_link_args %{extra_link_args}}

# set version if not defined through 'rpmbuild'
%{!?version: %global version 9.0.0}
%{!?version: %global version 9.1.0}

%global with_openssl_opts ""

Expand Down Expand Up @@ -175,6 +175,9 @@ cd mysql-connector-python
%{python3_sitearch}/_mysql_connector.cpython*.so
%changelog
* Wed Sep 11 2024 Oscar Pacheco <[email protected]> - 9.1.0-1
- Updated for 9.1.0
* Wed Jul 31 2024 Souma Kanti Ghosh <[email protected]> - 9.1.0-1
- Removed rules for Fedora, openSUSE and EL7 platforms
- Removed Python 3.8 support
Expand Down
2 changes: 1 addition & 1 deletion mysql-connector-python/lib/mysql/connector/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
as mysql.connector.version.
"""

VERSION = (9, 0, 0, "", 1)
VERSION = (9, 1, 0, "", 1)

# pylint: disable=consider-using-f-string
if VERSION[3] and VERSION[4]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
%{?extra_link_args: %global extra_link_args %{extra_link_args}}

# set version if not defined through 'rpmbuild'
%{!?version: %global version 9.0.0}
%{!?version: %global version 9.1.0}


# if true set byte_code_only to --byte_code_only
Expand Down Expand Up @@ -174,6 +174,9 @@ sed -i -e '/protobuf/d' %{buildroot}%{python3_sitearch}/mysqlx_connector_python-
%{python3_sitearch}/_mysqlxpb.cpython*.so
%changelog
* Wed Sep 11 2024 Oscar Pacheco <[email protected]> - 9.1.0-1
- Updated for 9.1.0
* Mon Aug 5 2024 Souma Kanti Ghosh <[email protected]> - 9.1.0-1
- Removed rules for Fedora, openSUSE and EL7 platforms
- Removed Python 3.8 support
Expand Down
2 changes: 1 addition & 1 deletion mysqlx-connector-python/lib/mysqlx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
as mysqlx.version.
"""

VERSION = (9, 0, 0, "", 1)
VERSION = (9, 1, 0, "", 1)

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

0 comments on commit da48d02

Please sign in to comment.