Skip to content

Commit ee3c0f1

Browse files
prepare for release version 1.4.0
1 parent 3c0e45d commit ee3c0f1

3 files changed

Lines changed: 34 additions & 4 deletions

File tree

ChangeLog.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
### wolfSSH v1.4.0 (04/30/2019)
2+
3+
- SFTP support for time attributes
4+
- TCP port forwarding feature added (--enable-fwd)
5+
- Example tcp port forwarding added to /examples/portfwd/portfwd
6+
- Fixes to SCP, including default direction set
7+
- Fix to match ID during KEX init
8+
- Add check for window adjustment packets when sending large transfers
9+
- Fixes and maintenance to Nucleus port for file closing
10+
- Add enable all option (--enable-all)
11+
- Fix for --disable-inline build
12+
- Fixes for GCC-7 warnings when falling through switch statements
13+
- Additional sanity checks added from fuzz testing
14+
- Refactor and fixes for use with non blocking
15+
- Add extended data read for piping stderr
16+
- Add client side pseudo terminal connection with ./examples/client/client -t
17+
- Add some basic Windows terminal conversions with wolfSSH_ConvertConsole
18+
- Add wolfSSH_stream_peek function to peek at incoming SSH data
19+
- Change name of internal function SendBuffered() to avoid clash with wolfSSL
20+
- Add support for SFTP on Windows
21+
- Use int types for arguments in examples to fix Raspberry Pi build
22+
- Fix for fail case with leading 0’s on MPINT
23+
- Default window size (DEFAULT_WINDOW_SZ) lowered from ~ 1 MB to ~ 16 KB
24+
- Disable examples option added to configure (--disable-examples)
25+
- Callback function and example use added for checking public key sent
26+
- AES CTR cipher support added
27+
- Fix for free’ing ECC caches with examples
28+
- Renamed example SFTP to be examples/sftpclient/wolfsftp
29+
30+
131
### wolfSSH v1.3.0 (08/15/2018)
232

333
- Accepted code submission from Stephen Casner for SCP support. Thanks Stephen!

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-2019 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.3.1],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.0],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -20,7 +20,7 @@ AC_ARG_PROGRAM
2020
AC_CONFIG_MACRO_DIR([m4])
2121
AC_CONFIG_HEADERS([src/config.h])
2222

23-
WOLFSSH_LIBRARY_VERSION=7:0:2
23+
WOLFSSH_LIBRARY_VERSION=8:0:3
2424
# | | |
2525
# +------+ | +---+
2626
# | | |

wolfssh/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
extern "C" {
3434
#endif
3535

36-
#define LIBWOLFSSH_VERSION_STRING "1.3.1"
37-
#define LIBWOLFSSH_VERSION_HEX 0x01003001
36+
#define LIBWOLFSSH_VERSION_STRING "1.4.0"
37+
#define LIBWOLFSSH_VERSION_HEX 0x01004000
3838

3939
#ifdef __cplusplus
4040
}

0 commit comments

Comments
 (0)