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 11cmake_minimum_required (VERSION 3.3.0 )
22cmake_policy (SET CMP0048 NEW )
33
4- project (libssh VERSION 0.8.1 LANGUAGES C )
4+ project (libssh VERSION 0.8.2 LANGUAGES C )
55
66# global needed variable
77set (APPLICATION_NAME ${PROJECT_NAME} )
Original file line number Diff line number Diff line change 11ChangeLog
22==========
33
4+ version 0.8.2 (released 2018-08-30)
5+ * Added sha256 fingerprints for pubkeys
6+ * Improved compiler flag detection
7+ * Fixed race condition in reading sftp messages
8+ * Fixed doxygen generation and added modern style
9+ * Fixed library initialization on Windows
10+ * Fixed __bounded__ attribute detection
11+ * Fixed a bug in the options parser
12+ * Fixed documentation for new knwon_hosts API
13+
414version 0.8.1 (released 2018-08-13)
515 * Fixed version number in the header
616 * Fixed version number in pkg-config and cmake config
Original file line number Diff line number Diff line change 7979/* libssh version */
8080#define LIBSSH_VERSION_MAJOR 0
8181#define LIBSSH_VERSION_MINOR 8
82- #define LIBSSH_VERSION_MICRO 1
82+ #define LIBSSH_VERSION_MICRO 2
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