From 7923c10697accc926acaa42bf5e9684032782af6 Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Mon, 25 Jul 2022 16:23:17 +0100 Subject: [PATCH] Add ChangeLog file --- ChangeLog.rst | 38 ++++++++++++++++++++++++++++++++++++++ MANIFEST.in | 1 + 2 files changed, 39 insertions(+) create mode 100644 ChangeLog.rst diff --git a/ChangeLog.rst b/ChangeLog.rst new file mode 100644 index 0000000..554438a --- /dev/null +++ b/ChangeLog.rst @@ -0,0 +1,38 @@ +Current Development +=================== + +New Features +------------ + +* wolfSSL builds with ``--disable-oldtls`` now supported + +Fixes +----- + +* TLS 1.3 support now works correctly and is tested +* Example server was not cleanly closing sockets + +wolfSSL-py Release 5.4.0 (July 13, 2022) +======================================== + +New Features +------------ + +* Update to wolfSSL 5.4.0 C library +* Add GitHub Actions support and remove Travis CI support + +wolfSSL-py Release 5.3.0 (May 13, 2022) +======================================= + +New Features +------------ + +* Update to wolfSSL 5.3.0 +* Build completely refactored to be more Python-like and easier to use +* Add support for wolfSSL ctx password callback + +Fixes +----- + +* Raise error when wolfSSL_write() returns 0 +* Update example certs to match main wolfSSL ones diff --git a/MANIFEST.in b/MANIFEST.in index 9e3e4e8..9a42a86 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include LICENSING.rst include README.rst +include ChangeLog.rst recursive-include tests * recursive-include requirements *