prepare for release v1.4.2

pull/184/head
Jacob Barthelmeh 2019-08-05 14:21:35 -06:00
parent 03f77d1de5
commit 0cc06675c9
3 changed files with 21 additions and 4 deletions

View File

@ -1,3 +1,20 @@
### wolfSSH v1.4.2 (08/06/2019)
- GCC 8 build warning fixes
- Fix for warning with enums used with SFTP and set socket type
- Added example server with Renesas CS+ port
- Fix for initializing UserAuthData to all zeros before use
- Fix for SFTP “LS” operation when setting the default window size to 2048
- Add structure size print out option -z to example client when the macro WOLFSSH_SHOW_SIZES is defined
- Additional automated tests of wolfSSH_CTX_UsePrivateKey_buffer and fix for call when key is already loaded
- Refactoring done to internal handling of packet assembly
- Add client side public key authentication support
- Support added for global requests
- Fix for NULL dereference warning, rPad/sPad initialization and SFTP check on want read. Thanks to GitHub user LinuxJedi for the reports
- Addition of WS_USER_AUTH_E error returned when user authentication callback returns WOLFSSH_USERAUTH_REJECTED
- Remove void cast on variable not compiled in with single threaded builds
### wolfSSH v1.4.0 (04/30/2019)
- SFTP support for time attributes

View File

@ -3,7 +3,7 @@
# All right reserved.
AC_COPYRIGHT([Copyright (C) 2014-2019 wolfSSL Inc.])
AC_INIT([wolfssh],[1.4.0],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
AC_INIT([wolfssh],[1.4.2],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])
@ -20,7 +20,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])
WOLFSSH_LIBRARY_VERSION=8:0:3
WOLFSSH_LIBRARY_VERSION=9:0:0
# | | |
# +------+ | +---+
# | | |

View File

@ -33,8 +33,8 @@
extern "C" {
#endif
#define LIBWOLFSSH_VERSION_STRING "1.4.0"
#define LIBWOLFSSH_VERSION_HEX 0x01004000
#define LIBWOLFSSH_VERSION_STRING "1.4.2"
#define LIBWOLFSSH_VERSION_HEX 0x01004002
#ifdef __cplusplus
}