From 3b9d0b15768ee9b9b941c2ebb72d29aae39c7d10 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Tue, 16 Aug 2022 06:40:56 -0500 Subject: [PATCH] Release 0.5.0 --- CHANGELOG.md | 9 +++++++++ src/truststore/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6f4554..01bd18d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.5.0 + +* **Support for using truststore was released with pip v22.2**! + You can [read more here](https://sethmlarson.dev/blog/help-test-system-trust-stores-in-python) about how to help us test truststore. +* Added David Glick as an author in packaging metadata. +* Added documentation for how to use `truststore` with urllib3, Requests, aiohttp, and pip. +* Changed macOS SecureTransport error handling to raise as `ssl.SSLError` with + message from the OS. + # 0.4.0 * Added more descriptive error messages to `ssl.SSLCertVerificationError` determined by the OS on macOS and Windows. diff --git a/src/truststore/__init__.py b/src/truststore/__init__.py index f3f0d04..07290a0 100644 --- a/src/truststore/__init__.py +++ b/src/truststore/__init__.py @@ -9,4 +9,4 @@ from ._api import SSLContext # noqa: E402 __all__ = ["SSLContext"] -__version__ = "0.4.0" +__version__ = "0.5.0"