Skip to content

Commit fbb8c90

Browse files
Merge pull request #214 from ejohnstown/release-prep
v1.4.3 Release Prep
2 parents f4c237a + e9e7845 commit fbb8c90

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

ChangeLog.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
### wolfSSH v1.4.3 (10/31/2019)
2+
3+
- wolfSFTP port to MQX 4.2 (MQX/MFS/RTCS)
4+
- Maintenance and bug fixes
5+
- Improvements and additions to the test cases
6+
- Fix some portablility between C compilers
7+
- Fixed an issue in the echoserver example where it would error sometimes
8+
on shutdown
9+
- Improvement to the global request processing
10+
- Fixed bug in the new keys message handler where it reported the wrong size
11+
in the data buffer; invalid value was logged, not used
12+
- Fixed bug in AES initialization that depended on build settings
13+
- Improved interoperability with puTTY
14+
- Added user auth callback error code for too many password failures
15+
- Improvements to the Nucleus filesystem abstraction
16+
- Added example for an "autopilot" file get and file put with the wolfSFTP
17+
example client
18+
19+
120
### wolfSSH v1.4.2 (08/06/2019)
221

322
- GCC 8 build warning fixes

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.4.2],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.3],[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=9:0:0
23+
WOLFSSH_LIBRARY_VERSION=10:0:1
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.4.2"
37-
#define LIBWOLFSSH_VERSION_HEX 0x01004002
36+
#define LIBWOLFSSH_VERSION_STRING "1.4.3"
37+
#define LIBWOLFSSH_VERSION_HEX 0x01004003
3838

3939
#ifdef __cplusplus
4040
}

0 commit comments

Comments
 (0)