Skip to content

Commit 48101d9

Browse files
kboortzoscpache
authored andcommitted
Updated the LICENSE file and other files for 9.0.0
1 parent 7220e5b commit 48101d9

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====================================================
2-
MySQL Connector/Python 8.0 - Release Notes & Changes
2+
MySQL Connector/Python - Release Notes & Changes
33
====================================================
44

55
MySQL Connector/Python

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Contributing to this project is easy. You just need to follow these steps.
2323

2424
- Make sure you have a user account at `bugs.mysql.com <https://bugs.mysql.com>`_. You will need to reference this user account when you submit your Oracle Contributor Agreement (a.k.a. OCA).
2525
- Sign the Oracle Contributor Agreement. You can find instructions for doing that at the `OCA Page <https://oca.opensource.oracle.com/>`_.
26-
- Develop your pull request. Make sure you are aware of the `requirements <https://dev.mysql.com/doc/dev/connector-python/8.0/requirements.html>`_ for the project.
26+
- Develop your pull request. Make sure you are aware of the `requirements <https://dev.mysql.com/doc/dev/connector-python/requirements.html>`_ for the project.
2727
- Validate your pull request by including tests that sufficiently cover the functionality you are adding.
2828
- Verify that the entire test suite passes with your code applied.
2929
- Submit your pull request. While you can submit the pull request via `GitHub <https://github.com/mysql/mysql-connector-python/pulls>`_, you can also submit it directly via `bugs.mysql.com <https://bugs.mysql.com>`_.
@@ -35,7 +35,7 @@ Setting Up a Development Environment
3535

3636
The following tips provide all the technical directions you should follow when writing code and before actually submitting your contribution.
3737

38-
1) Make sure you have the necessary `prerequisites <https://dev.mysql.com/doc/dev/connector-python/8.0/installation.html#prerequisites>`_ for building the project and `Pylint <https://www.pylint.org/>`_ for static code analysis
38+
1) Make sure you have the necessary `prerequisites <https://dev.mysql.com/doc/dev/connector-python/installation.html#prerequisites>`_ for building the project and `Pylint <https://www.pylint.org/>`_ for static code analysis
3939

4040
2) Clone MySQL Connector/Python
4141

LICENSE.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
Licensing Information User Manual
22

3-
MySQL Connector/Python 8.4.0 Community
3+
MySQL Connector/Python 9.0.0 Community
44
__________________________________________________________________
55

66
Introduction
77

88
This License Information User Manual contains Oracle's product license
99
and other licensing information, including licensing information for
1010
third-party software which may be included in this distribution of
11-
MySQL Connector/Python 8.4.0 Community.
11+
MySQL Connector/Python 9.0.0 Community.
1212

13-
Last updated: March 2024
13+
Last updated: May 2024
1414

1515
Licensing Information
1616

17-
This release of MySQL Connector/Python 8.4.0 Community is brought to
17+
This release of MySQL Connector/Python 9.0.0 Community is brought to
1818
you by the MySQL team at Oracle. This software is released under
1919
version 2 of the GNU General Public License (GPLv2), as set forth
2020
below, with the following additional permissions:
2121

22-
This distribution of MySQL Connector/Python 8.4.0 Community is designed
22+
This distribution of MySQL Connector/Python 9.0.0 Community is designed
2323
to work with certain software (including but not limited to OpenSSL)
2424
that is licensed under separate terms, as designated in a particular
2525
file or component or in the license documentation. Without limiting

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ an API that is compliant with the `Python Database API Specification v2.0
1515

1616
It also contains an implementation of the `XDevAPI <https://dev.mysql.com/doc/x-devapi-userguide/en>`_
1717
- An Application Programming Interface for working with the `MySQL Document Store
18-
<https://dev.mysql.com/doc/refman/8.0/en/document-store.html>`_.
18+
<https://dev.mysql.com/doc/refman/en/document-store.html>`_.
1919

2020
Features
2121
--------
@@ -47,7 +47,7 @@ The *classic API* can be installed via pip as follows:
4747
4848
$ pip install mysqlx-connector-python
4949
50-
Please refer to the `installation tutorial <https://dev.mysql.com/doc/dev/connector-python/8.0/installation.html>`_
50+
Please refer to the `installation tutorial <https://dev.mysql.com/doc/dev/connector-python/installation.html>`_
5151
for installation alternatives of the XDevAPI.
5252

5353
++++++++++++++++++++
@@ -169,4 +169,4 @@ License
169169
-------
170170

171171
Please refer to the `README.txt <README.txt>`_ and `LICENSE.txt <LICENSE.txt>`_
172-
files, available in this repository, for further details.
172+
files, available in this repository, for further details.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def is_eol_comment(stmt: bytes) -> bool:
132132
Whether or not the statement is an end-of-line comment.
133133
134134
References:
135-
[1]: https://dev.mysql.com/doc/refman/8.0/en/comments.html
135+
[1]: https://dev.mysql.com/doc/refman/en/comments.html
136136
"""
137137
is_double_dash_comment = (
138138
len(stmt) >= 3

mysql-connector-python/unittests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,8 @@ def setup_stats_db(cnx):
681681
"""Setup the database for storing statistics"""
682682
cur = cnx.cursor()
683683

684-
supported_python = ("3.8", "3.9", "3.10", "3.11")
685-
supported_mysql = ("5.7", "8.0", "8.1")
684+
supported_python = ("3.8", "3.9", "3.10", "3.11", "3.12")
685+
supported_mysql = ("5.7", "8.0", "8.4", "9.0")
686686

687687
columns = []
688688
for pyver in supported_python:

0 commit comments

Comments
 (0)