aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-08-30 07:54:10 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-08-30 07:54:10 +0200
commitefdd567a1ba1f421696b60260551b02243bdf65d (patch)
treecd72a432601cc12f9e2dc13f9fe6525d7cf36868
parentcff8f7c0b5e0c3c76b77bb68e365d706ca31df61 (diff)
downloadlibssh-efdd567a1ba1f421696b60260551b02243bdf65d.tar.gz
libssh-efdd567a1ba1f421696b60260551b02243bdf65d.tar.xz
libssh-efdd567a1ba1f421696b60260551b02243bdf65d.zip
Bump version to 0.8.2libssh-0.8.2
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog10
-rw-r--r--include/libssh/libssh.h2
3 files changed, 12 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d9147c1e..9ecd0ba7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.3.0)
cmake_policy(SET CMP0048 NEW)
-project(libssh VERSION 0.8.1 LANGUAGES C)
+project(libssh VERSION 0.8.2 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
diff --git a/ChangeLog b/ChangeLog
index e6ba89d8..04d4528c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,16 @@
ChangeLog
==========
+version 0.8.2 (released 2018-08-30)
+ * Added sha256 fingerprints for pubkeys
+ * Improved compiler flag detection
+ * Fixed race condition in reading sftp messages
+ * Fixed doxygen generation and added modern style
+ * Fixed library initialization on Windows
+ * Fixed __bounded__ attribute detection
+ * Fixed a bug in the options parser
+ * Fixed documentation for new knwon_hosts API
+
version 0.8.1 (released 2018-08-13)
* Fixed version number in the header
* Fixed version number in pkg-config and cmake config
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index b5b41dcb..d70319b4 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -79,7 +79,7 @@
/* libssh version */
#define LIBSSH_VERSION_MAJOR 0
#define LIBSSH_VERSION_MINOR 8
-#define LIBSSH_VERSION_MICRO 1
+#define LIBSSH_VERSION_MICRO 2
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \