Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to version 5.6.6 #51

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"