From 273fb4cfc62e307ce7930552d545963dc902b0c0 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 29 Oct 2018 09:33:24 +0100 Subject: [PATCH] Bump version to 0.8.5 Signed-off-by: Andreas Schneider --- CMakeLists.txt | 2 +- ChangeLog | 11 +++++++++++ include/libssh/libssh.h | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 89744a6e..8ea598d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules") include(DefineCMakeDefaults) include(DefineCompilerFlags) -project(libssh VERSION 0.8.4 LANGUAGES C) +project(libssh VERSION 0.8.5 LANGUAGES C) # global needed variable set(APPLICATION_NAME ${PROJECT_NAME}) diff --git a/ChangeLog b/ChangeLog index e48cab93..256cd657 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,17 @@ ChangeLog ========== +version 0.8.5 (released 2018-10-29) + * Added support to get known_hosts locations with ssh_options_get() + * Fixed preferred algorithm for known hosts negotiations + * Fixed KEX with some server implementations (e.g. Cisco) + * 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 socket fd handling with proxy command + * Fixed a memory leak with OpenSSL + version 0.8.4 (released 2018-10-16) * Fixed CVE-2018-10933 * Fixed building without globbing support diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 9edcd351..0e3b8812 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 8 -#define LIBSSH_VERSION_MICRO 4 +#define LIBSSH_VERSION_MICRO 5 #define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \ LIBSSH_VERSION_MINOR, \