Skip to content

Commit

Permalink
Merge pull request wolfSSL#33 from ejohnstown/release-v1.1.0
Browse files Browse the repository at this point in the history
Update the configure script and readme for v1.1.0.
  • Loading branch information
dgarske authored Jun 15, 2017
2 parents 770b90d + afdbf2b commit 700a01f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -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])

Expand All @@ -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
# | | |
# +------+ | +---+
# | | |
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.0.0"
#define LIBWOLFSSH_VERSION_HEX 0x01000000
#define LIBWOLFSSH_VERSION_STRING "1.1.0"
#define LIBWOLFSSH_VERSION_HEX 0x01001000

#ifdef __cplusplus
}
Expand Down

0 comments on commit 700a01f

Please sign in to comment.