Skip to content

Commit 5e85107

Browse files
authored
release v2.2.6 (#745)
1 parent feea60c commit 5e85107

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

HISTORY.rst

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
======================
2+
What's new in 2.2.6
3+
======================
4+
5+
Release: 2024-11-12
6+
7+
* MariaDB Connector/C 3.4 and MairaDB 11.4 enabled SSL and CA verification by default.
8+
It affected 2.2.5 windows wheel. This release disables SSL and CA verification by default. (#731)
9+
10+
* Add ``server_public_key_path`` option. It is needed to connect MySQL server with
11+
``sha256_password`` or ``caching_sha2_password`` authentication plugin without
12+
secure connection. (#744)
13+
114
======================
215
What's new in 2.2.5
316
======================

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[project]
22
name = "mysqlclient"
3-
# version = "2.2.0dev0"
43
description = "Python interface to MySQL"
54
readme = "README.md"
65
requires-python = ">=3.8"

src/MySQLdb/release.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = "Inada Naoki <[email protected]>"
2-
__version__ = "2.2.5"
3-
version_info = (2, 2, 5, "final", 0)
2+
__version__ = "2.2.6"
3+
version_info = (2, 2, 6, "final", 0)

0 commit comments

Comments
 (0)