From 8376822753062cc0b89d95492a2f584e8abc621f Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Thu, 30 Mar 2023 22:19:03 -0500 Subject: [PATCH] Release 0.6.1 --- CHANGELOG.md | 4 ++++ src/truststore/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d62e8c3..dcf2b50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.6.1 + +* Fixed issue where a `RecursionError` that would be raised when setting `SSLContext.minimum_version` or `.maximum_version`. + # 0.6.0 * **Truststore is now beta! Truststore will be made the default in a future pip release**. diff --git a/src/truststore/__init__.py b/src/truststore/__init__.py index 121246d..06ec844 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.0" +__version__ = "0.6.1"