Skip to content

Commit da48d02

Browse files
committed
Prepare release 9.1.0
Update connector version to 9.1.0. Change-Id: I60d874f778e7108c20cc6ecf7e9db2ba30426205
1 parent 61bccb0 commit da48d02

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
%{?extra_link_args: %global extra_link_args %{extra_link_args}}
4141

4242
# set version if not defined through 'rpmbuild'
43-
%{!?version: %global version 9.0.0}
43+
%{!?version: %global version 9.1.0}
4444

4545
%global with_openssl_opts ""
4646

@@ -175,6 +175,9 @@ cd mysql-connector-python
175175
%{python3_sitearch}/_mysql_connector.cpython*.so
176176
177177
%changelog
178+
* Wed Sep 11 2024 Oscar Pacheco <[email protected]> - 9.1.0-1
179+
- Updated for 9.1.0
180+
178181
* Wed Jul 31 2024 Souma Kanti Ghosh <[email protected]> - 9.1.0-1
179182
- Removed rules for Fedora, openSUSE and EL7 platforms
180183
- Removed Python 3.8 support

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysql.connector.version.
3333
"""
3434

35-
VERSION = (9, 0, 0, "", 1)
35+
VERSION = (9, 1, 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

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
%{?extra_link_args: %global extra_link_args %{extra_link_args}}
4343

4444
# set version if not defined through 'rpmbuild'
45-
%{!?version: %global version 9.0.0}
45+
%{!?version: %global version 9.1.0}
4646

4747

4848
# if true set byte_code_only to --byte_code_only
@@ -174,6 +174,9 @@ sed -i -e '/protobuf/d' %{buildroot}%{python3_sitearch}/mysqlx_connector_python-
174174
%{python3_sitearch}/_mysqlxpb.cpython*.so
175175
176176
%changelog
177+
* Wed Sep 11 2024 Oscar Pacheco <[email protected]> - 9.1.0-1
178+
- Updated for 9.1.0
179+
177180
* Mon Aug 5 2024 Souma Kanti Ghosh <[email protected]> - 9.1.0-1
178181
- Removed rules for Fedora, openSUSE and EL7 platforms
179182
- Removed Python 3.8 support

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
as mysqlx.version.
3333
"""
3434

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

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

0 commit comments

Comments
 (0)