We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9c34c0 commit f6426dbCopy full SHA for f6426db
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+# 0.9.0
2
+
3
+* Added support for Python 3.13.
4
+* Fixed loading additional certificates on macOS.
5
+* Changed error message for Windows when peer offers no certificates
6
+ and verification is enabled. Previously was `IndexError`, now is `SSLCertVerificationError`.
7
8
# 0.8.0
9
10
* Added support for PyPy 3.10 and later.
src/truststore/__init__.py
@@ -10,4 +10,4 @@
del _api, _sys # type: ignore[name-defined] # noqa: F821
11
12
__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"]
13
-__version__ = "0.8.0"
+__version__ = "0.9.0"
0 commit comments