diff --git a/ChangeLog.md b/ChangeLog.md index 3cc0f2f5..a9eee020 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,19 @@ +# wolfSSH v1.4.11 (Aug 22, 2022) + +## New Feature Additions and Improvements +- Alpha version of SSHD implementation (--enable-sshd) +- ECDSA key generation wrapper +- Espressif port and component install +- Improvements to detection of ECC RNG requirement + +## Fixes +- Handle receiving extended data type with SCP connections +- Multiple non blocking fixes in SSH and SFTP use cases +- Fix for handling '.' character in file name with SFTP +- Windows build fix for SFTP with log timestamps enabled +- Fix to handle listing large directories with SFTP LS function +- Fix for checking path length when cleaning it (SFTP/SCP) + # wolfSSH v1.4.10 (May 13, 2022) ## New Feature Additions and Improvements diff --git a/configure.ac b/configure.ac index 8f052afb..7e991be2 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # All right reserved. AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.]) -AC_INIT([wolfssh],[1.4.10],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com]) +AC_INIT([wolfssh],[1.4.11],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com]) AC_PREREQ([2.63]) AC_CONFIG_AUX_DIR([build-aux]) @@ -18,7 +18,7 @@ AC_ARG_PROGRAM AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h]) -WOLFSSH_LIBRARY_VERSION=12:4:4 +WOLFSSH_LIBRARY_VERSION=13:0:5 # | | | # +------+ | +---+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index 2bfc8cbd..9849adfd 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -35,8 +35,8 @@ extern "C" { #endif -#define LIBWOLFSSH_VERSION_STRING "1.4.10" -#define LIBWOLFSSH_VERSION_HEX 0x01004010 +#define LIBWOLFSSH_VERSION_STRING "1.4.11" +#define LIBWOLFSSH_VERSION_HEX 0x01004011 #ifdef __cplusplus }