-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47b955b
commit ed4207f
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 0.3.0 | ||
|
||
* Added support for loading extra CA certificates via `SSLContext.load_verify_locations()`. | ||
* Added type hints. | ||
* Changed the name of `TruststoreSSLContext` to `SSLContext`. | ||
* Changed certificate hostname verification to rely on macOS and Windows instead of OpenSSL. | ||
* Fixed the order default certificates are loaded for OpenSSL backend. | ||
|
||
# 0.2.0 | ||
|
||
* Added support for Windows via the CryptoAPI. | ||
|
||
# 0.1.0 | ||
|
||
* Initial release with support for macOS and Linux. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
from ._api import SSLContext # noqa: E402 | ||
|
||
__all__ = ["SSLContext"] | ||
__version__ = "0.2.0" | ||
__version__ = "0.3.0" |