aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-10-16 09:23:17 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-10-16 09:25:01 +0200
commit789df0b7d0c7abd6b85db9fc5247e146e3d4ddba (patch)
tree7a4b6e4a4ce24e1a449482489eb7ca3c93661d4f
parent66a222a73c4d866a33d4c27ff018c80e60b7acc7 (diff)
downloadlibssh-789df0b7d0c7abd6b85db9fc5247e146e3d4ddba.tar.gz
libssh-789df0b7d0c7abd6b85db9fc5247e146e3d4ddba.tar.xz
libssh-789df0b7d0c7abd6b85db9fc5247e146e3d4ddba.zip
Bump version to 0.8.4libssh-0.8.4
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--CMakeLists.txt2
-rw-r--r--ChangeLog6
-rw-r--r--include/libssh/libssh.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c294aa28..89ba06d4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
include(DefineCMakeDefaults)
include(DefineCompilerFlags)
-project(libssh VERSION 0.8.3 LANGUAGES C)
+project(libssh VERSION 0.8.4 LANGUAGES C)
# global needed variable
set(APPLICATION_NAME ${PROJECT_NAME})
diff --git a/ChangeLog b/ChangeLog
index 6d448807..e48cab93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
ChangeLog
==========
+version 0.8.4 (released 2018-10-16)
+ * Fixed CVE-2018-10933
+ * Fixed building without globbing support
+ * Fixed possible memory leaks
+ * Avoid SIGPIPE on sockets
+
version 0.8.3 (released 2018-09-21)
* Added support for rsa-sha2
* Added support to parse private keys in openssh container format
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 5c1c1d2b..9edcd351 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 3
+#define LIBSSH_VERSION_MICRO 4
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \