prepare for release v1.4.11

pull/443/head
Jacob Barthelmeh 2022-08-22 10:08:55 -06:00
parent 511a022833
commit 8e118ef222
3 changed files with 20 additions and 4 deletions

View File

@ -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

View File

@ -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
# | | |
# +------+ | +---+
# | | |

View File

@ -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
}