mirror of https://github.com/wolfSSL/wolfssh.git
Merge pull request #33 from ejohnstown/release-v1.1.0
Update the configure script and readme for v1.1.0.pull/34/head v1.1.0-stable
commit
700a01f6f0
14
README.md
14
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.
|
||||
|
|
|
@ -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
|
||||
# | | |
|
||||
# +------+ | +---+
|
||||
# | | |
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue