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"