This repository was archived by the owner on Jan 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010include (DefineCMakeDefaults )
1111include (DefineCompilerFlags )
1212
13- project (libssh VERSION 0.9.0 LANGUAGES C )
13+ project (libssh VERSION 0.9.1 LANGUAGES C )
1414
1515# global needed variable
1616set (APPLICATION_NAME ${PROJECT_NAME} )
Original file line number Diff line number Diff line change 11ChangeLog
22==========
33
4+ version 0.9.1 (released 2019-10-25)
5+ * Added support for Ed25519 via OpenSSL
6+ * Added support for X25519 via OpenSSL
7+ * Added support for localuser in Match keyword
8+ * Fixed Match keyword to be case sensitive
9+ * Fixed compilation with LibreSSL
10+ * Fixed error report of channel open (T75)
11+ * Fixed sftp documentation (T137)
12+ * Fixed known_hosts parsing (T156)
13+ * Fixed build issue with MinGW (T157)
14+ * Fixed build with gcc 9 (T164)
15+ * Fixed deprecation issues (T165)
16+ * Fixed known_hosts directory creation (T166)
17+
418version 0.9.0 (released 2019-06-28)
519 * Added support for AES-GCM
620 * Added improved rekeying support
Original file line number Diff line number Diff line change 7979/* libssh version */
8080#define LIBSSH_VERSION_MAJOR 0
8181#define LIBSSH_VERSION_MINOR 9
82- #define LIBSSH_VERSION_MICRO 0
82+ #define LIBSSH_VERSION_MICRO 1
8383
8484#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
8585 LIBSSH_VERSION_MINOR, \
You can’t perform that action at this time.
0 commit comments