Skip to content

Commit 76da2d9

Browse files
authored
Merge pull request #185 from JacobBarthelmeh/release
prepare for release 0.1.9
2 parents 5b546d4 + b56b597 commit 76da2d9

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# wolfCLU v0.1.9 (July 24, 2025)
2+
- Fix client and server KEM macro (PR 177)
3+
- Implementing PKCS8 and Base64 commands (PR 178)
4+
- Adjust tests for disable of DES with FIPS and add FIPS print out (PR 183)
5+
- Fixed problems with string init of array (PR 179)
6+
- Update license from GPLv2 to GPLv3 (PR 184)
7+
18
# wolfCLU v0.1.8 (Apr 4, 2025)
29
- Fix build errors in server.c when linked to wolfssl with --enable-all (PR 170)
310
- Increase CI tests to include --enable-all build of wolfSSL (PR 171)

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.8], [http://www.wolfssl.com])
13+
AC_INIT([wolfclu], [0.1.9], [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.8"
30-
#define CLUWOLFSSL_VERSION_HEX 0x00001008
29+
#define CLUWOLFSSL_VERSION_STRING "0.1.9"
30+
#define CLUWOLFSSL_VERSION_HEX 0x00001009
3131

3232
#ifdef __cplusplus
3333
}

0 commit comments

Comments
 (0)