diff --git a/CHANGELOG.md b/CHANGELOG.md index dcf2b50..8b0c201 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.7.0 + +* Changed the error raised when using an unsupported macOS version (10.7 or earlier) from an `OSError` to an `ImportError` + to match the error raised in other situations where the module isn't supported. + # 0.6.1 * Fixed issue where a `RecursionError` that would be raised when setting `SSLContext.minimum_version` or `.maximum_version`. diff --git a/src/truststore/__init__.py b/src/truststore/__init__.py index 06ec844..0f3a4d9 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.6.1" +__version__ = "0.7.0"