aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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, \