diff --git a/ChangeLog.md b/ChangeLog.md index ea152c6..f07af24 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,10 @@ +# wolfCLU v0.1.9 (July 24, 2025) +- Fix client and server KEM macro (PR 177) +- Implementing PKCS8 and Base64 commands (PR 178) +- Adjust tests for disable of DES with FIPS and add FIPS print out (PR 183) +- Fixed problems with string init of array (PR 179) +- Update license from GPLv2 to GPLv3 (PR 184) + # wolfCLU v0.1.8 (Apr 4, 2025) - Fix build errors in server.c when linked to wolfssl with --enable-all (PR 170) - Increase CI tests to include --enable-all build of wolfSSL (PR 171) diff --git a/configure.ac b/configure.ac index 77e81a6..1512133 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ #requires user to have AutoConf version 2.63 or greater. AC_PREREQ([2.63]) -AC_INIT([wolfclu], [0.1.8], [http://www.wolfssl.com]) +AC_INIT([wolfclu], [0.1.9], [http://www.wolfssl.com]) #a helpful directory to keep clutter out of root AC_CONFIG_AUX_DIR([build-aux]) diff --git a/wolfclu/version.h b/wolfclu/version.h index 3536cb9..ffcd7fd 100644 --- a/wolfclu/version.h +++ b/wolfclu/version.h @@ -26,8 +26,8 @@ extern "C" { #endif -#define CLUWOLFSSL_VERSION_STRING "0.1.8" -#define CLUWOLFSSL_VERSION_HEX 0x00001008 +#define CLUWOLFSSL_VERSION_STRING "0.1.9" +#define CLUWOLFSSL_VERSION_HEX 0x00001009 #ifdef __cplusplus }