Skip to content

Commit

Permalink
Update to version 5.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Lealem Amedie committed Jan 23, 2024
1 parent 0a8a76c commit 36edafe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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)
============================================
* Update wolfSSL to version 5.6.0
Expand Down
2 changes: 1 addition & 1 deletion wolfssl/_build_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def generate_libwolfssl():
get_libwolfssl()

# default values
OLDTLS_ENABLED = 1
OLDTLS_ENABLED = 0

if featureDetection:
OLDTLS_ENABLED = 0 if '#define NO_OLD_TLS' in optionsHeaderStr else 1
Expand Down
4 changes: 2 additions & 2 deletions wolfssl/_version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# 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
# while maintaining the C library version intact for better reference.
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
#
# MAJOR.MINOR.BUILD-POST

__version__ = "5.6.0-0"
__version__ = "5.6.6-0"

0 comments on commit 36edafe

Please sign in to comment.