Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions wolfclu/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading