aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-02-07 14:34:43 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-02-25 10:00:04 +0100
commit52986115b8b75e11ab21571e71b40af835bdb49c (patch)
treebfc1c53170216e1e997dc090a43e9315b9217317
parent7a49ee5ffc71fd105f6661f96beefec59c03da52 (diff)
downloadlibssh-52986115b8b75e11ab21571e71b40af835bdb49c.tar.gz
libssh-52986115b8b75e11ab21571e71b40af835bdb49c.tar.xz
libssh-52986115b8b75e11ab21571e71b40af835bdb49c.zip
Bump version to 0.8.7libssh-0.8.7
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog6
-rw-r--r--include/libssh/libssh.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 07f7140c..89810263 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.6 LANGUAGES C)
+project(libssh VERSION 0.8.7 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
diff --git a/ChangeLog b/ChangeLog
index e792ad50..4b7e0fac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
ChangeLog
==========
+version 0.8.7 (released 2019-02-25)
+ * Fixed handling extension flags in the server implementation
+ * Fixed exporting ed25519 private keys
+ * Fixed corner cases for rsa-sha2 signatures
+ * Fixed some issues with connector
+
version 0.8.6 (released 2018-12-24)
* Fixed compilation issues with different OpenSSL versions
* Fixed StrictHostKeyChecking in new knownhosts API
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 5a6b28d4..c0c4fa0a 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 6
+#define LIBSSH_VERSION_MICRO 7
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \