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

Commit 68fc17c

Browse files
committed
Bump version to 0.8.6
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
1 parent d327712 commit 68fc17c

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.5 LANGUAGES C)
13+
project(libssh VERSION 0.8.6 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.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+
415
version 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

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 5
82+
#define LIBSSH_VERSION_MICRO 6
8383

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

0 commit comments

Comments
 (0)