Skip to content

Commit

Permalink
prepare for release v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBarthelmeh committed Nov 14, 2024
1 parent 59b0884 commit a8abb17
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
11 changes: 11 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# wolfCLU v0.1.6 (Nov 11, 2024)
- Expanded continuous integration tests with more GitHub actions added (PR 142,
146, 147)
- Added support for option -inform with command dgst (PR 141)
- Added support for -pubout and -pubin with command rsa (PR 145)
- Added initial support for s_server command (PR 133)
- Sign and Verify Support with PEM format key ED25519, RSA, and ECC (PR 148)
- Extend renew script to regenerate expected values based on new certs (PR 151)
- Supporting PKCS7 command for parsing (PR 152)
- Add Dilithium to genkey, sign-verify and gen-sig-ver (PR 150,153)

# wolfCLU v0.1.5 (Dec 22, 2023)
- Fix memory type typo in clu_rsa.c
- Add missing void arg to functions in clu_funcs.c
Expand Down
5 changes: 2 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
#requires user to have AutoConf version 2.63 or greater.
AC_PREREQ([2.63])

AC_INIT([wolfclu], [0.1.5], [http://www.wolfssl.com])
AC_INIT([wolfclu], [0.1.6], [http://www.wolfssl.com])

#a helpful directory to keep clutter out of root
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADER([src/config.h])
AC_CONFIG_HEADERS([src/config.h])
AC_CANONICAL_HOST
AC_CANONICAL_BUILD

Expand Down Expand Up @@ -57,7 +57,6 @@ AC_PROG_MAKE_SET
AM_PROG_CC_C_O

# Checks for headers/libraries
AC_HEADER_STDC
AC_CHECK_HEADERS([sys/time.h string.h termios.h unistd.h])
AC_CHECK_SIZEOF(long long, 8)
AC_CHECK_SIZEOF(long, 4)
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.5"
#define CLUWOLFSSL_VERSION_HEX 0x00001005
#define CLUWOLFSSL_VERSION_STRING "0.1.6"
#define CLUWOLFSSL_VERSION_HEX 0x00001006

#ifdef __cplusplus
}
Expand Down

0 comments on commit a8abb17

Please sign in to comment.