From 0cc06675c9d689f19e4a40804ecff093460a08cc Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Mon, 5 Aug 2019 14:21:35 -0600 Subject: [PATCH] prepare for release v1.4.2 --- ChangeLog.md | 17 +++++++++++++++++ configure.ac | 4 ++-- wolfssh/version.h | 4 ++-- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 20a6912..208c7c6 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 diff --git a/configure.ac b/configure.ac index 8e1753e..04541d1 100644 --- a/configure.ac +++ b/configure.ac @@ -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 # | | | # +------+ | +---+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index 3f9ee40..9fa80ca 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -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 }