aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-11-07 16:05:21 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-07 16:19:00 +0100
commitf1e44a79a995043da471443f9709cd668810397c (patch)
tree0167d6428e1eb8872cf1bd07f526444859d4e482
parent54cf7b92edf81cba34d97b6ea7253acb6b994298 (diff)
downloadlibssh-f1e44a79a995043da471443f9709cd668810397c.tar.gz
libssh-f1e44a79a995043da471443f9709cd668810397c.tar.xz
libssh-f1e44a79a995043da471443f9709cd668810397c.zip
Bump version to 0.9.2
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
-rw-r--r--CMakeLists.txt4
-rw-r--r--ChangeLog5
-rw-r--r--include/libssh/libssh.h2
3 files changed, 8 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 49a9389a..1f0e42de 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.9.1 LANGUAGES C)
+project(libssh VERSION 0.9.2 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
@@ -22,7 +22,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
# Increment AGE. Set REVISION to 0
# If the source code was changed, but there were no interface changes:
# Increment REVISION.
-set(LIBRARY_VERSION "4.8.2")
+set(LIBRARY_VERSION "4.8.3")
set(LIBRARY_SOVERSION "4")
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
diff --git a/ChangeLog b/ChangeLog
index a2ec3dba..c23fd68e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
ChangeLog
==========
+version 0.9.2 (released 2019-11-07)
+ * Fixed libssh-config.cmake
+ * Fixed issues with rsa algorithm negotiation (T191)
+ * Fixed detection of OpenSSL ed25519 support (T197)
+
version 0.9.1 (released 2019-10-25)
* Added support for Ed25519 via OpenSSL
* Added support for X25519 via OpenSSL
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 925d9373..73771743 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 9
-#define LIBSSH_VERSION_MICRO 1
+#define LIBSSH_VERSION_MICRO 2
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \