diff --git a/ChangeLog.rst b/ChangeLog.rst index 6969ed7..2fa6072 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,10 @@ +wolfCrypt-py Release 5.7.4 (Nov 13, 2024) +========================================== + +* Add support for ChaCha20-Poly1305 +* Update to wolfSSL version 5.7.4 + + wolfCrypt-py Release 5.7.2 (Sep 6, 2024) ========================================== diff --git a/lib/wolfssl b/lib/wolfssl index 00e4215..bdd6231 160000 --- a/lib/wolfssl +++ b/lib/wolfssl @@ -1 +1 @@ -Subproject commit 00e42151ca061463ba6a95adb2290f678cbca472 +Subproject commit bdd62314f00fca0e216bf8c963c8eeff6327e0cb diff --git a/wolfcrypt/_version.py b/wolfcrypt/_version.py index a7f1a22..08ece7d 100644 --- a/wolfcrypt/_version.py +++ b/wolfcrypt/_version.py @@ -1,6 +1,6 @@ # When bumping the C library version, reset the POST count to 0 -__wolfssl_version__ = "v5.7.2-stable" +__wolfssl_version__ = "v5.7.4-stable" # We're using implicit post releases [PEP 440] to bump package version # while maintaining the C library version intact for better reference. @@ -8,5 +8,5 @@ # # MAJOR.MINOR.BUILD-POST -__version__ = "5.7.2-0" +__version__ = "5.7.4-0"