We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6965b27 commit 8725ad5Copy full SHA for 8725ad5
CHANGELOG.md
@@ -1,3 +1,11 @@
1
+# 0.10.1
2
+
3
+* Fixed the patching of Requests' globally-cached `ssl.SSLContext`
4
+ object to work automagically with ``truststore.inject_into_ssl()``
5
+ regardless of import-order.
6
+* Speed up import times by skipping feature-checking for known Python
7
+ implementations (CPython and PyPy).
8
9
# 0.10.0
10
11
* Added support for macOS 10.13 and earlier using the `SecTrustEvaluate` API. Note that
src/truststore/__init__.py
@@ -33,4 +33,4 @@
33
del _api, _sys # type: ignore[name-defined] # noqa: F821
34
35
__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"]
36
-__version__ = "0.10.0"
+__version__ = "0.10.1"
0 commit comments