Skip to content

Commit

Permalink
Merge pull request #184 from JacobBarthelmeh/release
Browse files Browse the repository at this point in the history
prepare for release v1.4.2
  • Loading branch information
ejohnstown authored Aug 5, 2019
2 parents 03f77d1 + 0cc0667 commit 6ed5b7d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
### wolfSSH v1.4.2 (08/06/2019)

- GCC 8 build warning fixes
- Fix for warning with enums used with SFTP and set socket type
- Added example server with Renesas CS+ port
- Fix for initializing UserAuthData to all zeros before use
- Fix for SFTP “LS” operation when setting the default window size to 2048
- Add structure size print out option -z to example client when the macro WOLFSSH_SHOW_SIZES is defined
- Additional automated tests of wolfSSH_CTX_UsePrivateKey_buffer and fix for call when key is already loaded
- Refactoring done to internal handling of packet assembly
- Add client side public key authentication support
- Support added for global requests
- Fix for NULL dereference warning, rPad/sPad initialization and SFTP check on want read. Thanks to GitHub user LinuxJedi for the reports
- Addition of WS_USER_AUTH_E error returned when user authentication callback returns WOLFSSH_USERAUTH_REJECTED
- Remove void cast on variable not compiled in with single threaded builds


### wolfSSH v1.4.0 (04/30/2019)

- SFTP support for time attributes
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# All right reserved.

AC_COPYRIGHT([Copyright (C) 2014-2019 wolfSSL Inc.])
AC_INIT([wolfssh],[1.4.0],[[email protected]],[wolfssh],[https://www.wolfssl.com])
AC_INIT([wolfssh],[1.4.2],[[email protected]],[wolfssh],[https://www.wolfssl.com])
AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])

Expand All @@ -20,7 +20,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])

WOLFSSH_LIBRARY_VERSION=8:0:3
WOLFSSH_LIBRARY_VERSION=9:0:0
# | | |
# +------+ | +---+
# | | |
Expand Down
4 changes: 2 additions & 2 deletions wolfssh/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
extern "C" {
#endif

#define LIBWOLFSSH_VERSION_STRING "1.4.0"
#define LIBWOLFSSH_VERSION_HEX 0x01004000
#define LIBWOLFSSH_VERSION_STRING "1.4.2"
#define LIBWOLFSSH_VERSION_HEX 0x01004002

#ifdef __cplusplus
}
Expand Down

0 comments on commit 6ed5b7d

Please sign in to comment.