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

Commit e949e13

Browse files
committed
Bump version to 0.8.1
1 parent 1510b63 commit e949e13

3 files changed

Lines changed: 8 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.2.0)
22
cmake_policy(SET CMP0048 NEW)
33

4-
project(libssh VERSION 0.8.0 LANGUAGES C)
4+
project(libssh VERSION 0.8.1 LANGUAGES C)
55

66
# global needed variable
77
set(APPLICATION_NAME ${PROJECT_NAME})

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
ChangeLog
22
==========
33

4+
version 0.8.1 (released 2018-08-13)
5+
* Fixed version number in the header
6+
* Fixed version number in pkg-config and cmake config
7+
* Fixed library initialization
8+
* Fixed attribute detection
9+
410
version 0.8.0 (released 2018-08-10)
511
* Removed support for deprecated SSHv1 protocol
612
* Added new connector API for clients

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 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)