diff --git a/CMakeLists.txt b/CMakeLists.txt index 18a80eda17..69824b9925 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d") set(VERSION_SUFFIX "") project( ClamAV - VERSION "1.0.6" + VERSION "1.0.7" DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." ) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) diff --git a/Jenkinsfile b/Jenkinsfile index 7f82339474..212352cbb3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ properties( parameters( [ string(name: 'VERSION', - defaultValue: '1.0.6', + defaultValue: '1.0.7', description: 'ClamAV version string'), string(name: 'FRAMEWORK_BRANCH', defaultValue: '1.0', diff --git a/NEWS.md b/NEWS.md index 8c89cb0543..05a7accc89 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,10 @@ Note: This file refers to the official packages. Things described here may differ slightly from third-party binary packages. +## 1.0.7 + +ClamAV 1.0.7 is a patch release with the following fixes: + ## 1.0.6 ClamAV 1.0.6 is a critical patch release with the following fixes: diff --git a/libclamav/bytecode_api.h b/libclamav/bytecode_api.h index 2c26f76ffa..d50bb72ea0 100644 --- a/libclamav/bytecode_api.h +++ b/libclamav/bytecode_api.h @@ -170,6 +170,7 @@ enum FunctionalityLevels { FUNC_LEVEL_1_0_4 = 164, /**< LibClamAV release 1.0.4 */ FUNC_LEVEL_1_0_5 = 165, /**< LibClamAV release 1.0.5 */ FUNC_LEVEL_1_0_6 = 166, /**< LibClamAV release 1.0.6 */ + FUNC_LEVEL_1_0_7 = 167, /**< LibClamAV release 1.0.7 */ }; /** diff --git a/libclamav/others.h b/libclamav/others.h index f7bc361e00..c4ffa4d361 100644 --- a/libclamav/others.h +++ b/libclamav/others.h @@ -73,7 +73,7 @@ * in re-enabling affected modules. */ -#define CL_FLEVEL 166 +#define CL_FLEVEL 167 #define CL_FLEVEL_DCONF CL_FLEVEL #define CL_FLEVEL_SIGTOOL CL_FLEVEL diff --git a/win32/res/common.rc b/win32/res/common.rc index 20df185543..a3017fb5f2 100644 --- a/win32/res/common.rc +++ b/win32/res/common.rc @@ -6,8 +6,8 @@ #define REPO_VERSION VERSION #endif -#define RES_VER_Q 1,0,6,0 -#define RES_VER_S "ClamAV 1.0.6" +#define RES_VER_Q 1,0,7,0 +#define RES_VER_S "ClamAV 1.0.7" VS_VERSION_INFO VERSIONINFO FILEVERSION RES_VER_Q