diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2018-10-16 09:33:36 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2018-10-16 12:45:32 +0200 |
commit | c20b360c96a098773755e82982ec6d7dfc7ff057 (patch) | |
tree | d80b0b83e7ae9283e1389e6958d72bb0be74b8ca | |
parent | 5e061962c59f7f1e3ca6da92d8606cdf125e125b (diff) | |
download | libssh-c20b360c96a098773755e82982ec6d7dfc7ff057.tar.gz libssh-c20b360c96a098773755e82982ec6d7dfc7ff057.tar.xz libssh-c20b360c96a098773755e82982ec6d7dfc7ff057.zip |
Bump version to 0.7.6libssh-0.7.6
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | include/libssh/libssh.h | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f39beadc..a0635567 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 "5") +set(APPLICATION_VERSION_PATCH "6") 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.2") +set(LIBRARY_VERSION "4.4.3") set(LIBRARY_SOVERSION "4") # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked @@ -1,6 +1,13 @@ ChangeLog ========== +version 0.7.6 (released 2018-10-16) + * Fixed CVE-2018-10933 + * Added support for OpenSSL 1.1 + * Added SHA256 support for ssh_get_publickey_hash() + * Fixed config parsing + * Fixed random memory corruption when importing pubkeys + version 0.7.5 (released 2017-04-13) * Fixed a memory allocation issue with buffers * Fixed PKI on Windows diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 7f59abe4..76e1d927 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 5 +#define LIBSSH_VERSION_MICRO 6 #define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \ LIBSSH_VERSION_MINOR, \ |