diff --git a/mysql-connector-python/cpydist/data/rpm/mysql-connector-python.spec b/mysql-connector-python/cpydist/data/rpm/mysql-connector-python.spec index e52a78ee..bbe303b6 100644 --- a/mysql-connector-python/cpydist/data/rpm/mysql-connector-python.spec +++ b/mysql-connector-python/cpydist/data/rpm/mysql-connector-python.spec @@ -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 "" @@ -175,6 +175,9 @@ cd mysql-connector-python %{python3_sitearch}/_mysql_connector.cpython*.so %changelog +* Wed Sep 11 2024 Oscar Pacheco - 9.1.0-1 +- Updated for 9.1.0 + * Wed Jul 31 2024 Souma Kanti Ghosh - 9.1.0-1 - Removed rules for Fedora, openSUSE and EL7 platforms - Removed Python 3.8 support diff --git a/mysql-connector-python/lib/mysql/connector/version.py b/mysql-connector-python/lib/mysql/connector/version.py index 4c4fcc71..29bb4448 100644 --- a/mysql-connector-python/lib/mysql/connector/version.py +++ b/mysql-connector-python/lib/mysql/connector/version.py @@ -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]: diff --git a/mysqlx-connector-python/cpydist/data/rpm/mysql-connector-python.spec b/mysqlx-connector-python/cpydist/data/rpm/mysql-connector-python.spec index 79a38965..46c622d5 100644 --- a/mysqlx-connector-python/cpydist/data/rpm/mysql-connector-python.spec +++ b/mysqlx-connector-python/cpydist/data/rpm/mysql-connector-python.spec @@ -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 @@ -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 - 9.1.0-1 +- Updated for 9.1.0 + * Mon Aug 5 2024 Souma Kanti Ghosh - 9.1.0-1 - Removed rules for Fedora, openSUSE and EL7 platforms - Removed Python 3.8 support diff --git a/mysqlx-connector-python/lib/mysqlx/version.py b/mysqlx-connector-python/lib/mysqlx/version.py index 3142641c..55eb3cbb 100644 --- a/mysqlx-connector-python/lib/mysqlx/version.py +++ b/mysqlx-connector-python/lib/mysqlx/version.py @@ -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]: