From 640fe6de2a40f9e9600bad4e0be1465cae8f0f10 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Fri, 19 May 2023 13:20:33 +0900 Subject: [PATCH] Release v2.2.0rc1 (#607) --- HISTORY.rst | 13 +++++++++++-- src/MySQLdb/release.py | 4 ++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 13e5cb01..ac083156 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 diff --git a/src/MySQLdb/release.py b/src/MySQLdb/release.py index 55359628..08b9e619 100644 --- a/src/MySQLdb/release.py +++ b/src/MySQLdb/release.py @@ -1,3 +1,3 @@ __author__ = "Inada Naoki " -version_info = (2, 2, 0, "dev", 0) -__version__ = "2.2.0.dev0" +version_info = (2, 2, 0, "rc", 1) +__version__ = "2.2.0.rc1"