Skip to content

Commit a9ae05b

Browse files
committed
Release Rollup
1. Update configure with the new version. 2. Update the ChangeLog. 3. Update the readme.
1 parent 9e33356 commit a9ae05b

3 files changed

Lines changed: 41 additions & 11 deletions

File tree

ChangeLog.md

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
1-
### wolfSSH v1.4.3 (10/31/2019)
1+
# wolfSSH v1.4.4 (04/24/2020)
2+
3+
## New Feature Additions
4+
5+
- Added wolfSCP client example
6+
- Added support for building for VxWorks
7+
8+
## Fixes
9+
10+
- Fixes for some buffer issues discovered with fuzz testing
11+
- Fixes for some SCP directory issues in Nucleus
12+
- Fixed an issue where a buffer size went negative, cosmetic
13+
- Fixed bug in ECDSA when using alt-ecc-size in wolfCrypt
14+
- Fixed bug with AES-CTR and FIPSv2 build
15+
- Fixed bug when using single precision
16+
- Fix for SCP rename action
17+
18+
## Improvements and Optimizations
19+
20+
- Improved interoperability with FireZilla
21+
- Example tool option clarification
22+
- Better SFTP support in 32-bit environments
23+
- SFTP and SCP aren't dependent on ioctl() anymore
24+
- Add password rejection count
25+
- Public key vs password authentication chosen by user auth callback
26+
- MQX maintenance
27+
28+
29+
--------------------------------
30+
31+
# wolfSSH v1.4.3 (10/31/2019)
232

333
- wolfSFTP port to MQX 4.2 (MQX/MFS/RTCS)
434
- Maintenance and bug fixes
@@ -17,7 +47,7 @@
1747
example client
1848

1949

20-
### wolfSSH v1.4.2 (08/06/2019)
50+
# wolfSSH v1.4.2 (08/06/2019)
2151

2252
- GCC 8 build warning fixes
2353
- Fix for warning with enums used with SFTP and set socket type
@@ -38,7 +68,7 @@
3868
- Remove void cast on variable not compiled in with single threaded builds
3969

4070

41-
### wolfSSH v1.4.0 (04/30/2019)
71+
# wolfSSH v1.4.0 (04/30/2019)
4272

4373
- SFTP support for time attributes
4474
- TCP port forwarding feature added (--enable-fwd)
@@ -68,15 +98,15 @@
6898
- Renamed example SFTP to be examples/sftpclient/wolfsftp
6999

70100

71-
### wolfSSH v1.3.0 (08/15/2018)
101+
# wolfSSH v1.3.0 (08/15/2018)
72102

73103
- Accepted code submission from Stephen Casner for SCP support. Thanks Stephen!
74104
- Added SCP server support.
75105
- Added SFTP client and server support.
76106
- Updated the autoconf scripts.
77107
- Other bug fixes and enhancements.
78108

79-
### wolfSSH v1.2.0 (09/26/2017)
109+
# wolfSSH v1.2.0 (09/26/2017)
80110

81111
- Added ECDH Group Exchange with SHA2 hashing and curves nistp256,
82112
nistp384, and nistp521.
@@ -89,7 +119,7 @@
89119
- Added a Visual Studio solution to build the library, examples, and tests.
90120
- Other bug fixes and enhancements.
91121

92-
### wolfSSH v1.1.0 (06/16/2017)
122+
# wolfSSH v1.1.0 (06/16/2017)
93123

94124
- Added DH Group Exchange with SHA-256 hashing to the key exchange.
95125
- Removed the canned banner and provided a function to set a banner string.
@@ -103,6 +133,6 @@
103133
- Fixed a bug with the GetString function.
104134
- Other small bug fixes and enhancements.
105135

106-
### wolfSSH v1.0.0 (10/24/2016)
136+
# wolfSSH v1.0.0 (10/24/2016)
107137

108138
Initial release.

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-2020 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.3],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.4],[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=10:0:1
23+
WOLFSSH_LIBRARY_VERSION=11:0:2
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.3"
37-
#define LIBWOLFSSH_VERSION_HEX 0x01004003
36+
#define LIBWOLFSSH_VERSION_STRING "1.4.4"
37+
#define LIBWOLFSSH_VERSION_HEX 0x01004004
3838

3939
#ifdef __cplusplus
4040
}

0 commit comments

Comments
 (0)