From afdbf2b7fee7e52b76cf82400ea89b8efd1f0764 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Tue, 13 Jun 2017 11:05:12 -0700 Subject: [PATCH] Update the configure script and readme for v1.1.0. --- README.md | 14 ++++++++++++++ configure.ac | 6 +++--- wolfssh/version.h | 4 ++-- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 133cbf46..b7b5b8fb 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/configure.ac b/configure.ac index 8b70e30a..c2cf5782 100644 --- a/configure.ac +++ b/configure.ac @@ -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 # | | | # +------+ | +---+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index 24216d07..4c55d8a6 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -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 }