Skip to content

Commit

Permalink
release v2.2.6 (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane authored Nov 13, 2024
1 parent feea60c commit 5e85107
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
13 changes: 13 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
======================
What's new in 2.2.6
======================

Release: 2024-11-12

* MariaDB Connector/C 3.4 and MairaDB 11.4 enabled SSL and CA verification by default.
It affected 2.2.5 windows wheel. This release disables SSL and CA verification by default. (#731)

* Add ``server_public_key_path`` option. It is needed to connect MySQL server with
``sha256_password`` or ``caching_sha2_password`` authentication plugin without
secure connection. (#744)

======================
What's new in 2.2.5
======================
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "mysqlclient"
# version = "2.2.0dev0"
description = "Python interface to MySQL"
readme = "README.md"
requires-python = ">=3.8"
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__ = "2.2.5"
version_info = (2, 2, 5, "final", 0)
__version__ = "2.2.6"
version_info = (2, 2, 6, "final", 0)

0 comments on commit 5e85107

Please sign in to comment.