Skip to content

Commit b6d0021

Browse files
authored
Merge pull request #136 from JacobBarthelmeh/release
prepare for release 0.1.4
2 parents 8c40e86 + 86c02e5 commit b6d0021

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

ChangeLog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# wolfCLU v0.1.4 (Nov 21, 2023)
2+
- Removed erroneous file generation on ecc keygen
3+
- Added options -req, -signkey, -extfile, -extensions and -md for x509 command
4+
- Use void with func prototype
5+
- Add ability to set more subjectAltName attributes
6+
- Check for defined MAX_FILENAME_SZ before defining it locally
7+
- Handle potential pointer increment in wolfSSL_i2d_X509
8+
9+
110
# wolfCLU v0.1.2 (Mar 31, 2023)
211
### Fixes and Enhancements
312
- Fix for DH use with FIPS build and cross compile warning

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#requires user to have AutoConf version 2.63 or greater.
1111
AC_PREREQ([2.63])
1212

13-
AC_INIT([wolfclu], [0.1.2], [http://www.wolfssl.com])
13+
AC_INIT([wolfclu], [0.1.4], [http://www.wolfssl.com])
1414

1515
#a helpful directory to keep clutter out of root
1616
AC_CONFIG_AUX_DIR([build-aux])

wolfclu/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
extern "C" {
2727
#endif
2828

29-
#define CLUWOLFSSL_VERSION_STRING "0.1.2"
30-
#define CLUWOLFSSL_VERSION_HEX 0x00001002
29+
#define CLUWOLFSSL_VERSION_STRING "0.1.4"
30+
#define CLUWOLFSSL_VERSION_HEX 0x00001004
3131

3232
#ifdef __cplusplus
3333
}

0 commit comments

Comments
 (0)