Skip to content

Commit 700a01f

Browse files
authored
Merge pull request #33 from ejohnstown/release-v1.1.0
Update the configure script and readme for v1.1.0.
2 parents 770b90d + afdbf2b commit 700a01f

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,20 @@ Where the user can be `gretel` or `hansel`.
8686
release notes
8787
-------------
8888

89+
### wolfSSH v1.1.0 (06/16/2017)
90+
91+
- Added DH Group Exchange with SHA-256 hashing to the key exchange.
92+
- Removed the canned banner and provided a function to set a banner string.
93+
If no sting is provided, no banner is sent.
94+
- Expanded the make checking to include an API test.
95+
- Added a function that returns session statistics.
96+
- When connecting to the echoserver, hitting Ctrl-E will give you some
97+
session statistics.
98+
- Parse and reply to the Global Request message.
99+
- Fixed a bug with client initiated rekeying.
100+
- Fixed a bug with the GetString function.
101+
- Other small bug fixes and enhancements.
102+
89103
### wolfSSH v1.0.0 (10/24/2016)
90104

91105
Initial release.

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# wolfssh
2-
# Copyright (C) 2014-2016 wolfSSL Inc.
2+
# Copyright (C) 2014-2017 wolfSSL Inc.
33
# All right reserved.
44

5-
AC_INIT([wolfssh], [1.0.0], [http://wolfssl.com], [wolfssh])
5+
AC_INIT([wolfssh], [1.1.0], [http://wolfssl.com], [wolfssh])
66
AC_PREREQ([2.63])
77
AC_CONFIG_AUX_DIR([build-aux])
88

@@ -17,7 +17,7 @@ AC_ARG_PROGRAM
1717
AC_CONFIG_MACRO_DIR([m4])
1818
AC_CONFIG_HEADERS([src/config.h])
1919

20-
WOLFSSH_LIBRARY_VERSION=2:0:1
20+
WOLFSSH_LIBRARY_VERSION=3:0:2
2121
# | | |
2222
# +------+ | +---+
2323
# | | |

wolfssh/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
extern "C" {
3434
#endif
3535

36-
#define LIBWOLFSSH_VERSION_STRING "1.0.0"
37-
#define LIBWOLFSSH_VERSION_HEX 0x01000000
36+
#define LIBWOLFSSH_VERSION_STRING "1.1.0"
37+
#define LIBWOLFSSH_VERSION_HEX 0x01001000
3838

3939
#ifdef __cplusplus
4040
}

0 commit comments

Comments
 (0)