Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 273fb4c

Browse files
committed
Bump version to 0.8.5
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
1 parent 56f7c27 commit 273fb4c

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010
include(DefineCMakeDefaults)
1111
include(DefineCompilerFlags)
1212

13-
project(libssh VERSION 0.8.4 LANGUAGES C)
13+
project(libssh VERSION 0.8.5 LANGUAGES C)
1414

1515
# global needed variable
1616
set(APPLICATION_NAME ${PROJECT_NAME})

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
ChangeLog
22
==========
33

4+
version 0.8.5 (released 2018-10-29)
5+
* Added support to get known_hosts locations with ssh_options_get()
6+
* Fixed preferred algorithm for known hosts negotiations
7+
* Fixed KEX with some server implementations (e.g. Cisco)
8+
* Fixed issues with MSVC
9+
* Fixed keyboard-interactive auth in server mode
10+
(regression from CVE-2018-10933)
11+
* Fixed gssapi auth in server mode (regression from CVE-2018-10933)
12+
* Fixed socket fd handling with proxy command
13+
* Fixed a memory leak with OpenSSL
14+
415
version 0.8.4 (released 2018-10-16)
516
* Fixed CVE-2018-10933
617
* Fixed building without globbing support

include/libssh/libssh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
/* libssh version */
8080
#define LIBSSH_VERSION_MAJOR 0
8181
#define LIBSSH_VERSION_MINOR 8
82-
#define LIBSSH_VERSION_MICRO 4
82+
#define LIBSSH_VERSION_MICRO 5
8383

8484
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
8585
LIBSSH_VERSION_MINOR, \

0 commit comments

Comments
 (0)