Merge pull request #214 from ejohnstown/release-prep

v1.4.3 Release Prep
pull/218/head v1.4.3-stable
JacobBarthelmeh 2019-10-31 15:26:57 -06:00 committed by GitHub
commit fbb8c90f0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 4 deletions

View File

@ -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) ### wolfSSH v1.4.2 (08/06/2019)
- GCC 8 build warning fixes - GCC 8 build warning fixes

View File

@ -3,7 +3,7 @@
# All right reserved. # All right reserved.
AC_COPYRIGHT([Copyright (C) 2014-2019 wolfSSL Inc.]) 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_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
@ -20,7 +20,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_HEADERS([src/config.h])
WOLFSSH_LIBRARY_VERSION=9:0:0 WOLFSSH_LIBRARY_VERSION=10:0:1
# | | | # | | |
# +------+ | +---+ # +------+ | +---+
# | | | # | | |

View File

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