Skip to content

Commit a1e6cf8

Browse files
prepare for release 1.4.20
1 parent 697f54a commit a1e6cf8

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

ChangeLog.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# wolfSSH v1.4.20 (Feburary 14, 2025)
2+
3+
## New Features
4+
5+
- Added DH Group 16 and HMAC-SHA2-512 support (PR 768)
6+
- Added RFC-4256 keyboard-interactive authentication support (PR 763)
7+
8+
## Enhancements and Fixes
9+
10+
- Enhancement to pass dynamic memory heap hint to init RNG call (PR 749)
11+
- Update SCP example to properly free memory upon failure (PR 750)
12+
- Address memory management during socket timeouts in wolfSSHd (PR 752)
13+
- Modify wolfSSHd to terminate child processes following SSH connection failures
14+
(PR 753)
15+
- Resolve SFTP compilation issues with WOLFSSH_FATFS (PR 756)
16+
- Refactor and simplify autogen script (PR 758)
17+
- Fix SCP hang issue in interop scenarios (PR 751)
18+
- Reinstate support for P521 and P384 curves by default when compiled in (PR 762)
19+
- Fix for wolfSSH client app handling of an empty hostname (PR 768)
20+
21+
122
# wolfSSH v1.4.19 (November 1, 2024)
223

324
## New Features

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# All right reserved.
44

55
AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.19],[[email protected]],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.20],[[email protected]],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
1818
AC_CONFIG_MACRO_DIR([m4])
1919
AC_CONFIG_HEADERS([config.h])
2020

21-
WOLFSSH_LIBRARY_VERSION=17:1:10
21+
WOLFSSH_LIBRARY_VERSION=17:2:10
2222
# | | |
2323
# +-----+ | +----+
2424
# | | |

wolfssh/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
extern "C" {
3636
#endif
3737

38-
#define LIBWOLFSSH_VERSION_STRING "1.4.19"
39-
#define LIBWOLFSSH_VERSION_HEX 0x01004019
38+
#define LIBWOLFSSH_VERSION_STRING "1.4.20"
39+
#define LIBWOLFSSH_VERSION_HEX 0x01004020
4040

4141
#ifdef __cplusplus
4242
}

0 commit comments

Comments
 (0)