From 219770469376e79e07e77355ef308db2de645798 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 15 Sep 2015 15:14:27 +0200 Subject: [PATCH] Bump version to 0.7.2 --- CMakeLists.txt | 2 +- ChangeLog | 8 ++++++++ include/libssh/libssh.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 111379e0..6de3b7a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(APPLICATION_NAME ${PROJECT_NAME}) set(APPLICATION_VERSION_MAJOR "0") set(APPLICATION_VERSION_MINOR "7") -set(APPLICATION_VERSION_PATCH "1") +set(APPLICATION_VERSION_PATCH "2") set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}") diff --git a/ChangeLog b/ChangeLog index 1b6530f6..5fd60134 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,14 @@ ChangeLog ========== +version 0.7.2 (released 2015-09-15) + * Fixed OpenSSL detection on Windows + * Fixed return status for ssh_userauth_agent() + * Fixed KEX to prefer hmac-sha2-256 + * Fixed sftp packet handling + * Fixed return values of ssh_key_is_(public|private) + * Fixed bug in global success reply + version 0.7.1 (released 2015-06-30) * Fixed SSH_AUTH_PARTIAL auth with auto public key * Fixed memory leak in session options diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 95d9065c..d1f8f554 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -78,7 +78,7 @@ /* libssh version */ #define LIBSSH_VERSION_MAJOR 0 #define LIBSSH_VERSION_MINOR 7 -#define LIBSSH_VERSION_MICRO 1 +#define LIBSSH_VERSION_MICRO 2 #define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \ LIBSSH_VERSION_MINOR, \