aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-10-25 11:55:23 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-10-25 16:11:17 +0200
commit67c0ce3d219a1565491c30d6e5815a73eaea70a4 (patch)
tree0b695766dedf3e62de8aac33f943393e2e153f94
parentf618689c82d1f953c14b1de8ec4ab10740121826 (diff)
downloadlibssh-67c0ce3d219a1565491c30d6e5815a73eaea70a4.tar.gz
libssh-67c0ce3d219a1565491c30d6e5815a73eaea70a4.tar.xz
libssh-67c0ce3d219a1565491c30d6e5815a73eaea70a4.zip
cmake: Bump version to 0.9.1libssh-0.9.1
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog14
-rw-r--r--include/libssh/libssh.h2
3 files changed, 16 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 243acb00..a8d739ae 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.0 LANGUAGES C)
+project(libssh VERSION 0.9.1 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
diff --git a/ChangeLog b/ChangeLog
index d54889a0..a2ec3dba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,20 @@
ChangeLog
==========
+version 0.9.1 (released 2019-10-25)
+ * Added support for Ed25519 via OpenSSL
+ * Added support for X25519 via OpenSSL
+ * Added support for localuser in Match keyword
+ * Fixed Match keyword to be case sensitive
+ * Fixed compilation with LibreSSL
+ * Fixed error report of channel open (T75)
+ * Fixed sftp documentation (T137)
+ * Fixed known_hosts parsing (T156)
+ * Fixed build issue with MinGW (T157)
+ * Fixed build with gcc 9 (T164)
+ * Fixed deprecation issues (T165)
+ * Fixed known_hosts directory creation (T166)
+
version 0.9.0 (released 2019-06-28)
* Added support for AES-GCM
* Added improved rekeying support
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 348084ed..925d9373 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 0
+#define LIBSSH_VERSION_MICRO 1
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \