Skip to content

Commit ea3714e

Browse files
prepare for release 1.4.20
1 parent 86499a5 commit ea3714e

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

ChangeLog.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# wolfSSH v1.4.20 (January 31, 2025)
2+
3+
## Enhancements and Fixes
4+
5+
- Enhancement to pass dynamic memory heap hint to init RNG call (PR 749)
6+
- Update SCP example to properly free memory upon failure (PR 750)
7+
- Address memory management during socket timeouts in wolfSSHd (PR 752)
8+
- Modify wolfSSHd to terminate child processes following SSH connection failures
9+
(PR 753)
10+
- Resolve SFTP compilation issues with WOLFSSH_FATFS (PR 756)
11+
- Refactor and simplify autogen script (PR 758)
12+
- Fix SCP hang issue in interop scenarios (PR 751)
13+
- Reinstate support for P521 and P384 curves by default when compiled in (PR 762)
14+
15+
116
# wolfSSH v1.4.19 (November 1, 2024)
217

318
## New Features

configure.ac

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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)