prepare for v5.7.2 release

pull/58/head
Reda Chouk 2024-09-09 16:32:09 +02:00 committed by Daniele Lacamera
parent d8db72f00d
commit 4712cfba90
3 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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"