Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.2.0rc1 #607

Merged
merged 1 commit into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,17 @@
Release: TBD

* Use ``pkg-config`` instead of ``mysql_config`` (#586)


* Raise ProgrammingError on -inf (#557)
* Raise IntegrityError for ER_BAD_NULL. (#579)
* Windows: Use MariaDB Connector/C 3.3.4 (#585)
* Use pkg-config instead of mysql_config (#586)
* Add collation option (#564)
* Drop Python 3.7 support (#593)
* Use pyproject.toml for build (#598)
* Add Cursor.mogrify (#477)
* Partial support of ssl_mode option with mariadbclient (#475)
* Discard remaining results without creating Python objects (#601)
* Fix executemany with binary prefix (#605)

======================
What's new in 2.1.1
Expand Down
4 changes: 2 additions & 2 deletions src/MySQLdb/release.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = "Inada Naoki <[email protected]>"
version_info = (2, 2, 0, "dev", 0)
__version__ = "2.2.0.dev0"
version_info = (2, 2, 0, "rc", 1)
__version__ = "2.2.0.rc1"