From 64a2d37c3040ceb9265d1d1c46a7e75e05537f04 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 29 Oct 2018 10:52:49 +0100 Subject: Bump version to 0.7.7 Signed-off-by: Andreas Schneider --- CMakeLists.txt | 4 ++-- ChangeLog | 7 +++++++ include/libssh/libssh.h | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0635567..d9a5352e 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 "6") +set(APPLICATION_VERSION_PATCH "7") set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}") @@ -19,7 +19,7 @@ set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINO # Increment AGE. Set REVISION to 0 # If the source code was changed, but there were no interface changes: # Increment REVISION. -set(LIBRARY_VERSION "4.4.3") +set(LIBRARY_VERSION "4.4.4") set(LIBRARY_SOVERSION "4") # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked diff --git a/ChangeLog b/ChangeLog index 6723b054..08cf7bba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ ChangeLog ========== +version 0.7.7 (released 2018-10-29) + * Fixed issues with MSVC + * Fixed keyboard-interactive auth in server mode + (regression from CVE-2018-10933) + * Fixed gssapi auth in server mode (regression from CVE-2018-10933) + * Fixed a memory leak with OpenSSL + version 0.7.6 (released 2018-10-16) * Fixed CVE-2018-10933 * Added support for OpenSSL 1.1 diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 76e1d927..2a6b2c9a 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -79,7 +79,7 @@ /* libssh version */ #define LIBSSH_VERSION_MAJOR 0 #define LIBSSH_VERSION_MINOR 7 -#define LIBSSH_VERSION_MICRO 6 +#define LIBSSH_VERSION_MICRO 7 #define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \ LIBSSH_VERSION_MINOR, \ -- cgit v1.2.1