aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-12-24 07:55:41 +0100
committerAndreas Schneider <asn@cryptomilk.org>2018-12-24 07:59:04 +0100
commit68fc17caac6d87e7cfe4a89113127625c00b4dd5 (patch)
tree1c19228e0837ee74267fe785a0f1ecbb8a4705dd
parentd3277127392109ac9cf2326cfaa3e770a8509fd4 (diff)
downloadlibssh-68fc17caac6d87e7cfe4a89113127625c00b4dd5.tar.gz
libssh-68fc17caac6d87e7cfe4a89113127625c00b4dd5.tar.xz
libssh-68fc17caac6d87e7cfe4a89113127625c00b4dd5.zip
Bump version to 0.8.6libssh-0.8.6
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog11
-rw-r--r--include/libssh/libssh.h2
3 files changed, 13 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 62d62761..59dc8cfa 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.5 LANGUAGES C)
+project(libssh VERSION 0.8.6 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
diff --git a/ChangeLog b/ChangeLog
index 256cd657..e792ad50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,17 @@
ChangeLog
==========
+version 0.8.6 (released 2018-12-24)
+ * Fixed compilation issues with different OpenSSL versions
+ * Fixed StrictHostKeyChecking in new knownhosts API
+ * Fixed ssh_send_keepalive() with packet filter
+ * Fixed possible crash with knownhosts options
+ * Fixed issus with rekeying
+ * Fixed strong ECDSA keys
+ * Fixed some issues with rsa-sha2 extentions
+ * Fixed access violation in ssh_init() (static linking)
+ * Fixed ssh_channel_close() handling
+
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
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 0e3b8812..5a6b28d4 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 5
+#define LIBSSH_VERSION_MICRO 6
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \