From 4712cfba908aa68f6aae3337366cd0635c3390a9 Mon Sep 17 00:00:00 2001 From: Reda Chouk Date: Mon, 9 Sep 2024 16:32:09 +0200 Subject: [PATCH] prepare for v5.7.2 release --- ChangeLog.rst | 6 ++++++ README.rst | 1 + wolfssl/_version.py | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 3875a6f..f0215f7 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,9 @@ +wolfSSL-py Release 5.7.2 (Sep 6, 2024) +============================================ +* SSLSocket: support version() version +* support disabling secure renegotiation +* Update wolfSSL to version 5.7.2 + wolfSSL-py Release 5.6.6 (Jan 23, 2024) ============================================ * Fix segfault issue with TLS v1.3 diff --git a/README.rst b/README.rst index 5387317..6c8c750 100644 --- a/README.rst +++ b/README.rst @@ -74,6 +74,7 @@ default. To disable secure renegotiation set the environment variable WOLFSSLPY_DISABLE_SCR during the build process. For example: .. code-block:: bash + $ WOLFSSLPY_DISABLE_SCR=1 pip install . Testing diff --git a/wolfssl/_version.py b/wolfssl/_version.py index cdf206a..33e969f 100644 --- a/wolfssl/_version.py +++ b/wolfssl/_version.py @@ -1,6 +1,6 @@ # When bumping the C library version, reset the POST count to 0 -__wolfssl_version__ = "v5.6.6-stable" +__wolfssl_version__ = "v5.7.2-stable" # We're using implicit post releases [PEP 440] to bump package version # while maintaining the C library version intact for better reference. @@ -8,4 +8,4 @@ __wolfssl_version__ = "v5.6.6-stable" # # MAJOR.MINOR.BUILD-POST -__version__ = "5.6.6-0" +__version__ = "5.7.2-0"