We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c8e93b commit 7ddad6eCopy full SHA for 7ddad6e
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+# 0.7.0
2
+
3
+* Changed the error raised when using an unsupported macOS version (10.7 or earlier) from an `OSError` to an `ImportError`
4
+ to match the error raised in other situations where the module isn't supported.
5
6
# 0.6.1
7
8
* Fixed issue where a `RecursionError` that would be raised when setting `SSLContext.minimum_version` or `.maximum_version`.
src/truststore/__init__.py
@@ -10,4 +10,4 @@
10
del _api, _sys # type: ignore[name-defined] # noqa: F821
11
12
__all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"]
13
-__version__ = "0.6.1"
+__version__ = "0.7.0"
0 commit comments