release 2.2.2 (#693)

This commit is contained in:
Inada Naoki
2024-02-04 14:22:58 +09:00
committed by GitHub
parent ace8b25649
commit 7c199a90f8
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,15 @@
======================
What's new in 2.2.2
======================
Release: 2024-02-04
* Support building with MySQL 8.3 (#688).
* Deprecate ``db.shutdown()`` and ``db.kill()`` methods in docstring.
This is because ``mysql_shutdown()`` and ``mysql_kill()`` were removed in MySQL 8.3.
They will emit DeprecationWarning in the future but not for now.
====================== ======================
What's new in 2.2.1 What's new in 2.2.1
====================== ======================

View File

@ -1,3 +1,3 @@
__author__ = "Inada Naoki <songofacandy@gmail.com>" __author__ = "Inada Naoki <songofacandy@gmail.com>"
__version__ = "2.2.1" __version__ = "2.2.2"
version_info = (2, 2, 1, "final", 0) version_info = (2, 2, 2, "final", 0)