diff --git a/ChangeLog.md b/ChangeLog.md index eb2efb44..5ab82405 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,12 @@ +# wolfCLU v0.1.4 (Nov 21, 2023) +- Removed erroneous file generation on ecc keygen +- Added options -req, -signkey, -extfile, -extensions and -md for x509 command +- Use void with func prototype +- Add ability to set more subjectAltName attributes +- Check for defined MAX_FILENAME_SZ before defining it locally +- Handle potential pointer increment in wolfSSL_i2d_X509 + + # wolfCLU v0.1.2 (Mar 31, 2023) ### Fixes and Enhancements - Fix for DH use with FIPS build and cross compile warning diff --git a/configure.ac b/configure.ac index e32987e5..09177bc6 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.2], [http://www.wolfssl.com]) +AC_INIT([wolfclu], [0.1.4], [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 ac9ff2de..6ebaf341 100644 --- a/wolfclu/version.h +++ b/wolfclu/version.h @@ -26,8 +26,8 @@ extern "C" { #endif -#define CLUWOLFSSL_VERSION_STRING "0.1.2" -#define CLUWOLFSSL_VERSION_HEX 0x00001002 +#define CLUWOLFSSL_VERSION_STRING "0.1.4" +#define CLUWOLFSSL_VERSION_HEX 0x00001004 #ifdef __cplusplus }