Skip to content

Commit c6dd1ea

Browse files
committed
Prepare for v5.8.2 release
1 parent 2668e81 commit c6dd1ea

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

ChangeLog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
wolfCrypt-py Release 5.8.2 (Jul 24, 2025)
2+
==========================================
3+
4+
* Add support for ML-KEM
5+
* Add support for ML-DSA
6+
* Update to wolfSSL version 5.8.2
7+
18
wolfCrypt-py Release 5.7.4 (Nov 13, 2024)
29
==========================================
310

lib/wolfssl

Submodule wolfssl updated 1603 files

scripts/build_ffi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ def build_ffi(local_wolfssl, features):
449449
#include <wolfssl/wolfcrypt/curve25519.h>
450450
#include <wolfssl/wolfcrypt/poly1305.h>
451451
#include <wolfssl/wolfcrypt/chacha20_poly1305.h>
452-
#include <wolfssl/wolfcrypt/kyber.h>
453-
#include <wolfssl/wolfcrypt/wc_kyber.h>
452+
#include <wolfssl/wolfcrypt/mlkem.h>
453+
#include <wolfssl/wolfcrypt/wc_mlkem.h>
454454
#include <wolfssl/wolfcrypt/dilithium.h>
455455
"""
456456

wolfcrypt/_version.py

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

3-
__wolfssl_version__ = "v5.7.4-stable"
3+
__wolfssl_version__ = "v5.8.2-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.7.4-0"
11+
__version__ = "5.8.2-0"
1212

0 commit comments

Comments
 (0)