Skip to content

Commit 6ba654c

Browse files
Lealem Amediedanielinux
authored andcommitted
Update to version 5.6.6
1 parent 7f9b9d0 commit 6ba654c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ChangeLog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
wolfSSL-py Release 5.6.6 (Jan 23, 2024)
2+
============================================
3+
* Fix segfault issue with TLS v1.3
4+
* Update expired example certs
5+
* Update wolfSSL to version 5.6.6
6+
7+
18
wolfSSL-py Release 5.6.0 (May 2, 2022)
29
============================================
310
* Update wolfSSL to version 5.6.0

wolfssl/_build_ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def generate_libwolfssl():
292292
get_libwolfssl()
293293

294294
# default values
295-
OLDTLS_ENABLED = 1
295+
OLDTLS_ENABLED = 0
296296

297297
if featureDetection:
298298
OLDTLS_ENABLED = 0 if '#define NO_OLD_TLS' in optionsHeaderStr else 1

wolfssl/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# When bumping the C library version, reset the POST count to 0
22

3-
__wolfssl_version__ = "v5.6.0-stable"
3+
__wolfssl_version__ = "v5.6.6-stable"
44

55
# We're using implicit post releases [PEP 440] to bump package version
66
# while maintaining the C library version intact for better reference.
77
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
88
#
99
# MAJOR.MINOR.BUILD-POST
1010

11-
__version__ = "5.6.0-0"
11+
__version__ = "5.6.6-0"

0 commit comments

Comments
 (0)