diff --git a/ChangeLog.md b/ChangeLog.md index 0f2f1021..5b58e0fb 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,26 @@ +# wolfSSH v1.4.20 (Feburary 20, 2025) + +## New Features + +- Added DH Group 16 and HMAC-SHA2-512 support (PR 768) +- Added RFC-4256 keyboard-interactive authentication support (PR 763) + +## Enhancements and Fixes + +- Enhancement to pass dynamic memory heap hint to init RNG call (PR 749) +- Update SCP example to properly free memory upon failure (PR 750) +- Address memory management during socket timeouts in wolfSSHd (PR 752) +- Modify wolfSSHd to terminate child processes following SSH connection failures + (PR 753) +- Fix for wolfSSHd handling of pipe's with forced commands (PR 776) +- Resolve SFTP compilation issues with WOLFSSH_FATFS (PR 756) +- Refactor and simplify autogen script (PR 758) +- Fix SCP hang issue in interop scenarios (PR 751) +- Fix for SCP server side handling of EAGAIN (PR 783) +- Reinstate support for P521 and P384 curves by default when compiled in (PR 762) +- Fix for wolfSSH client app handling of an empty hostname (PR 768) + + # wolfSSH v1.4.19 (November 1, 2024) ## New Features diff --git a/configure.ac b/configure.ac index 20615775..db2d930d 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # All right reserved. AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.]) -AC_INIT([wolfssh],[1.4.19],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com]) +AC_INIT([wolfssh],[1.4.20],[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=17:1:10 +WOLFSSH_LIBRARY_VERSION=17:2:10 # | | | # +-----+ | +----+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index e2999dae..af50eb7c 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -35,8 +35,8 @@ extern "C" { #endif -#define LIBWOLFSSH_VERSION_STRING "1.4.19" -#define LIBWOLFSSH_VERSION_HEX 0x01004019 +#define LIBWOLFSSH_VERSION_STRING "1.4.20" +#define LIBWOLFSSH_VERSION_HEX 0x01004020 #ifdef __cplusplus }