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"