Update to version 5.6.6

pull/53/head v5.6.6-stable
Lealem Amedie 2024-01-23 10:32:34 -07:00 committed by Daniele Lacamera
parent 7f9b9d0276
commit 6ba654c216
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
wolfSSL-py Release 5.6.6 (Jan 23, 2024)
============================================
* Fix segfault issue with TLS v1.3
* Update expired example certs
* Update wolfSSL to version 5.6.6
wolfSSL-py Release 5.6.0 (May 2, 2022) wolfSSL-py Release 5.6.0 (May 2, 2022)
============================================ ============================================
* Update wolfSSL to version 5.6.0 * Update wolfSSL to version 5.6.0

View File

@ -292,7 +292,7 @@ else:
get_libwolfssl() get_libwolfssl()
# default values # default values
OLDTLS_ENABLED = 1 OLDTLS_ENABLED = 0
if featureDetection: if featureDetection:
OLDTLS_ENABLED = 0 if '#define NO_OLD_TLS' in optionsHeaderStr else 1 OLDTLS_ENABLED = 0 if '#define NO_OLD_TLS' in optionsHeaderStr else 1

View File

@ -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.0-stable" __wolfssl_version__ = "v5.6.6-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.0-stable"
# #
# MAJOR.MINOR.BUILD-POST # MAJOR.MINOR.BUILD-POST
__version__ = "5.6.0-0" __version__ = "5.6.6-0"