aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2017-04-13 16:33:04 +0200
committerAndreas Schneider <asn@cryptomilk.org>2017-04-13 16:33:04 +0200
commit0588cbf9d43e7819e453c8b35c1b5e515d815473 (patch)
treefd9a834aa36cc8806e885239787a797f40d65ef3
parenta7cce775503960da6a27d1c6af740f617d7f5ad5 (diff)
downloadlibssh-0588cbf9d43e7819e453c8b35c1b5e515d815473.tar.gz
libssh-0588cbf9d43e7819e453c8b35c1b5e515d815473.tar.xz
libssh-0588cbf9d43e7819e453c8b35c1b5e515d815473.zip
Bump version to 0.7.5libssh-0.7.5
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--CMakeLists.txt4
-rw-r--r--ChangeLog7
-rw-r--r--include/libssh/libssh.h2
3 files changed, 10 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9763832d..f39beadc 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -8,7 +8,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
set(APPLICATION_VERSION_MAJOR "0")
set(APPLICATION_VERSION_MINOR "7")
-set(APPLICATION_VERSION_PATCH "4")
+set(APPLICATION_VERSION_PATCH "5")
set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINOR}.${APPLICATION_VERSION_PATCH}")
@@ -19,7 +19,7 @@ set(APPLICATION_VERSION "${APPLICATION_VERSION_MAJOR}.${APPLICATION_VERSION_MINO
# Increment AGE. Set REVISION to 0
# If the source code was changed, but there were no interface changes:
# Increment REVISION.
-set(LIBRARY_VERSION "4.4.1")
+set(LIBRARY_VERSION "4.4.2")
set(LIBRARY_SOVERSION "4")
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
diff --git a/ChangeLog b/ChangeLog
index c1c38f8e..6a111a1a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
ChangeLog
==========
+
+version 0.7.5 (released 2017-04-13)
+ * Fixed a memory allocation issue with buffers
+ * Fixed PKI on Windows
+ * Fixed some SSHv1 functions
+ * Fixed config hostname expansion
+
version 0.7.4 (released 2017-02-03)
* Added id_ed25519 to the default identity list
* Fixed sftp EOF packet handling
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index d16f8c63..37214898 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 7
-#define LIBSSH_VERSION_MICRO 4
+#define LIBSSH_VERSION_MICRO 5
#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
LIBSSH_VERSION_MINOR, \