prepare for v5.7.2 release
parent
d8db72f00d
commit
4712cfba90
|
|
@ -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)
|
wolfSSL-py Release 5.6.6 (Jan 23, 2024)
|
||||||
============================================
|
============================================
|
||||||
* Fix segfault issue with TLS v1.3
|
* Fix segfault issue with TLS v1.3
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,7 @@ default. To disable secure renegotiation set the environment variable
|
||||||
WOLFSSLPY_DISABLE_SCR during the build process. For example:
|
WOLFSSLPY_DISABLE_SCR during the build process. For example:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ WOLFSSLPY_DISABLE_SCR=1 pip install .
|
$ WOLFSSLPY_DISABLE_SCR=1 pip install .
|
||||||
|
|
||||||
Testing
|
Testing
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# When bumping the C library version, reset the POST count to 0
|
# 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
|
# We're using implicit post releases [PEP 440] to bump package version
|
||||||
# while maintaining the C library version intact for better reference.
|
# while maintaining the C library version intact for better reference.
|
||||||
|
|
@ -8,4 +8,4 @@ __wolfssl_version__ = "v5.6.6-stable"
|
||||||
#
|
#
|
||||||
# MAJOR.MINOR.BUILD-POST
|
# MAJOR.MINOR.BUILD-POST
|
||||||
|
|
||||||
__version__ = "5.6.6-0"
|
__version__ = "5.7.2-0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue