mirror of https://github.com/wolfSSL/wolfssh.git
prepare for release v1.4.11
parent
511a022833
commit
8e118ef222
16
ChangeLog.md
16
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)
|
# wolfSSH v1.4.10 (May 13, 2022)
|
||||||
|
|
||||||
## New Feature Additions and Improvements
|
## New Feature Additions and Improvements
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# All right reserved.
|
# All right reserved.
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.])
|
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_PREREQ([2.63])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ AC_ARG_PROGRAM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
WOLFSSH_LIBRARY_VERSION=12:4:4
|
WOLFSSH_LIBRARY_VERSION=13:0:5
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSH_VERSION_STRING "1.4.10"
|
#define LIBWOLFSSH_VERSION_STRING "1.4.11"
|
||||||
#define LIBWOLFSSH_VERSION_HEX 0x01004010
|
#define LIBWOLFSSH_VERSION_HEX 0x01004011
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue