From e9e7845974167180a80a92a201cfa755508fa72f Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 31 Oct 2019 10:16:27 -0700 Subject: [PATCH] v1.4.3 Release Prep --- ChangeLog.md | 19 +++++++++++++++++++ configure.ac | 4 ++-- wolfssh/version.h | 4 ++-- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 55978e57e..6c7b94006 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,22 @@ +### wolfSSH v1.4.3 (10/31/2019) + +- wolfSFTP port to MQX 4.2 (MQX/MFS/RTCS) +- Maintenance and bug fixes +- Improvements and additions to the test cases +- Fix some portablility between C compilers +- Fixed an issue in the echoserver example where it would error sometimes + on shutdown +- Improvement to the global request processing +- Fixed bug in the new keys message handler where it reported the wrong size + in the data buffer; invalid value was logged, not used +- Fixed bug in AES initialization that depended on build settings +- Improved interoperability with puTTY +- Added user auth callback error code for too many password failures +- Improvements to the Nucleus filesystem abstraction +- Added example for an "autopilot" file get and file put with the wolfSFTP + example client + + ### wolfSSH v1.4.2 (08/06/2019) - GCC 8 build warning fixes diff --git a/configure.ac b/configure.ac index 04541d1a9..6dd840437 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.2],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com]) +AC_INIT([wolfssh],[1.4.3],[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=9:0:0 +WOLFSSH_LIBRARY_VERSION=10:0:1 # | | | # +------+ | +---+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index 9fa80ca26..e4f471b7f 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -33,8 +33,8 @@ extern "C" { #endif -#define LIBWOLFSSH_VERSION_STRING "1.4.2" -#define LIBWOLFSSH_VERSION_HEX 0x01004002 +#define LIBWOLFSSH_VERSION_STRING "1.4.3" +#define LIBWOLFSSH_VERSION_HEX 0x01004003 #ifdef __cplusplus }