Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 67c0ce3

Browse files
committed
cmake: Bump version to 0.9.1
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
1 parent f618689 commit 67c0ce3

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010
include(DefineCMakeDefaults)
1111
include(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
1616
set(APPLICATION_NAME ${PROJECT_NAME})

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
ChangeLog
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+
418
version 0.9.0 (released 2019-06-28)
519
* Added support for AES-GCM
620
* Added improved rekeying support

include/libssh/libssh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
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, \

0 commit comments

Comments
 (0)