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

Commit efdd567

Browse files
committed
Bump version to 0.8.2
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
1 parent cff8f7c commit efdd567

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.3.0)
22
cmake_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
77
set(APPLICATION_NAME ${PROJECT_NAME})

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
ChangeLog
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+
414
version 0.8.1 (released 2018-08-13)
515
* Fixed version number in the header
616
* Fixed version number in pkg-config and cmake config

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 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, \

0 commit comments

Comments
 (0)