From f6426dbc2c09d416ceb188a4a4984c15805e5e6c Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 29 Apr 2024 12:14:14 -0500 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 7 +++++++ src/truststore/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 863d1d4..c4efb01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.9.0 + +* Added support for Python 3.13. +* Fixed loading additional certificates on macOS. +* Changed error message for Windows when peer offers no certificates + and verification is enabled. Previously was `IndexError`, now is `SSLCertVerificationError`. + # 0.8.0 * Added support for PyPy 3.10 and later. diff --git a/src/truststore/__init__.py b/src/truststore/__init__.py index 59930f4..9e7f267 100644 --- a/src/truststore/__init__.py +++ b/src/truststore/__init__.py @@ -10,4 +10,4 @@ del _api, _sys # type: ignore[name-defined] # noqa: F821 __all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"] -__version__ = "0.8.0" +__version__ = "0.9.0"