Update the configure script and readme for v1.1.0.

pull/33/head
John Safranek 2017-06-13 11:05:12 -07:00
parent 770b90d0fd
commit afdbf2b7fe
3 changed files with 19 additions and 5 deletions

View File

@ -86,6 +86,20 @@ Where the user can be `gretel` or `hansel`.
release notes
-------------
### wolfSSH v1.1.0 (06/16/2017)
- Added DH Group Exchange with SHA-256 hashing to the key exchange.
- Removed the canned banner and provided a function to set a banner string.
If no sting is provided, no banner is sent.
- Expanded the make checking to include an API test.
- Added a function that returns session statistics.
- When connecting to the echoserver, hitting Ctrl-E will give you some
session statistics.
- Parse and reply to the Global Request message.
- Fixed a bug with client initiated rekeying.
- Fixed a bug with the GetString function.
- Other small bug fixes and enhancements.
### wolfSSH v1.0.0 (10/24/2016)
Initial release.

View File

@ -1,8 +1,8 @@
# wolfssh
# Copyright (C) 2014-2016 wolfSSL Inc.
# Copyright (C) 2014-2017 wolfSSL Inc.
# All right reserved.
AC_INIT([wolfssh], [1.0.0], [http://wolfssl.com], [wolfssh])
AC_INIT([wolfssh], [1.1.0], [http://wolfssl.com], [wolfssh])
AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])
@ -17,7 +17,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])
WOLFSSH_LIBRARY_VERSION=2:0:1
WOLFSSH_LIBRARY_VERSION=3:0:2
# | | |
# +------+ | +---+
# | | |

View File

@ -33,8 +33,8 @@
extern "C" {
#endif
#define LIBWOLFSSH_VERSION_STRING "1.0.0"
#define LIBWOLFSSH_VERSION_HEX 0x01000000
#define LIBWOLFSSH_VERSION_STRING "1.1.0"
#define LIBWOLFSSH_VERSION_HEX 0x01001000
#ifdef __cplusplus
}