This repository was archived by the owner on Jan 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010include (DefineCMakeDefaults )
1111include (DefineCompilerFlags )
1212
13- project (libssh VERSION 0.8.5 LANGUAGES C )
13+ project (libssh VERSION 0.8.6 LANGUAGES C )
1414
1515# global needed variable
1616set (APPLICATION_NAME ${PROJECT_NAME} )
Original file line number Diff line number Diff line change 11ChangeLog
22==========
33
4+ version 0.8.6 (released 2018-12-24)
5+ * Fixed compilation issues with different OpenSSL versions
6+ * Fixed StrictHostKeyChecking in new knownhosts API
7+ * Fixed ssh_send_keepalive() with packet filter
8+ * Fixed possible crash with knownhosts options
9+ * Fixed issus with rekeying
10+ * Fixed strong ECDSA keys
11+ * Fixed some issues with rsa-sha2 extentions
12+ * Fixed access violation in ssh_init() (static linking)
13+ * Fixed ssh_channel_close() handling
14+
415version 0.8.5 (released 2018-10-29)
516 * Added support to get known_hosts locations with ssh_options_get()
617 * Fixed preferred algorithm for known hosts negotiations
Original file line number Diff line number Diff line change 7979/* libssh version */
8080#define LIBSSH_VERSION_MAJOR 0
8181#define LIBSSH_VERSION_MINOR 8
82- #define LIBSSH_VERSION_MICRO 5
82+ #define LIBSSH_VERSION_MICRO 6
8383
8484#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
8585 LIBSSH_VERSION_MINOR, \
You can’t perform that action at this time.
0 commit comments