Skip to content

Commit a0b7a56

Browse files
committed
Changes for Release v0.1.0
1 parent 426ba9b commit a0b7a56

File tree

3 files changed

+32
-4
lines changed

3 files changed

+32
-4
lines changed

ChangeLog.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# wolfCLU v0.1.0 (Sep 12, 2022)
2+
### Fixes and Enhancements
3+
- Fix for buffer issue with s_client
4+
- Add fsanitize testing with github actions
5+
- Update dhparam to read mod size from different location in arguments
6+
- Fix for x509 encoding modifying the cert
7+
- Fix for supporting more alt names and skipping count
8+
- Add -CAfile and verify_return_error flags for s_client command
9+
- Expand testing with additional unit tests and Jenkins nightly test
10+
- Fix for enc edge cases
11+
- Fix x509 command to use piped input
12+
- Support for building on Windows
13+
- Add -pass flag to enc command
14+
- Add -partial_chain arg for verify command
15+
- Add -modulus flag for x509 command
16+
- Handle additional CSR attribute print outs
17+
- Add -passout flag to req command
18+
- Fix for enc with nosalt
19+
- Update m4 files
20+
- Fix for parsing basic constraint from conf file
21+
- Improve error logging
22+
- IPV6 parsing support for s_client command
23+
- Support for building with FIPS wolfSSL
24+
- Add -text flag for crl command
25+
- Support for building on FreeRTOS
26+
- Add disable filesystem configure
27+
- Support for creating req with attributes
28+
129
# wolfCLU v0.0.8 (Mar 04, 2022)
230
### Commands Added
331
- Add rand command

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# configure.ac
22
#
3-
# Copyright (C) 2006-2020 wolfSSL Inc.
3+
# Copyright (C) 2006-2022 wolfSSL Inc.
44
# All rights reserved.
55
#
66
# This file is part of wolfssl command line utility.
@@ -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.0.8], [http://www.wolfssl.com])
13+
AC_INIT([wolfclu], [0.1.0], [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.0.8"
30-
#define CLUWOLFSSL_VERSION_HEX 0x00000008
29+
#define CLUWOLFSSL_VERSION_STRING "0.1.0"
30+
#define CLUWOLFSSL_VERSION_HEX 0x00001000
3131

3232
#ifdef __cplusplus
3333
}

0 commit comments

Comments
 (0)