mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 18:33:16 +00:00
New release version changes
Signed-off-by: rsundriyal <ravis069@gmail.com>
This commit is contained in:
parent
cad552d115
commit
5a84081574
5 changed files with 30 additions and 13 deletions
|
@ -19,10 +19,10 @@ cmake_policy(SET CMP0087 NEW) # support generator expressions in install(CODE) a
|
||||||
# For release candidate: set(VERSION_SUFFIX "-rc")
|
# For release candidate: set(VERSION_SUFFIX "-rc")
|
||||||
# For release: set(VERSION_SUFFIX "")
|
# For release: set(VERSION_SUFFIX "")
|
||||||
string(TIMESTAMP TODAY "%Y%m%d")
|
string(TIMESTAMP TODAY "%Y%m%d")
|
||||||
set(VERSION_SUFFIX "")
|
set(VERSION_SUFFIX "-devel-${TODAY}")
|
||||||
|
|
||||||
project( ClamAV
|
project( ClamAV
|
||||||
VERSION "1.4.0"
|
VERSION "1.5.0"
|
||||||
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
|
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
|
||||||
|
|
||||||
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
|
||||||
|
|
20
Jenkinsfile
vendored
20
Jenkinsfile
vendored
|
@ -10,19 +10,19 @@ properties(
|
||||||
parameters(
|
parameters(
|
||||||
[
|
[
|
||||||
string(name: 'VERSION',
|
string(name: 'VERSION',
|
||||||
defaultValue: '1.4.0',
|
defaultValue: '1.5.0',
|
||||||
description: 'ClamAV version string'),
|
description: 'ClamAV version string'),
|
||||||
string(name: 'FRAMEWORK_BRANCH',
|
string(name: 'FRAMEWORK_BRANCH',
|
||||||
defaultValue: '1.4',
|
defaultValue: '1.5',
|
||||||
description: 'test-framework branch'),
|
description: 'test-framework branch'),
|
||||||
string(name: 'TESTS_BRANCH',
|
string(name: 'TESTS_BRANCH',
|
||||||
defaultValue: '1.4',
|
defaultValue: '1.5',
|
||||||
description: 'tests branch for the package and regular tests'),
|
description: 'tests branch for the package and regular tests'),
|
||||||
string(name: 'TESTS_CUSTOM_BRANCH',
|
string(name: 'TESTS_CUSTOM_BRANCH',
|
||||||
defaultValue: '1.4',
|
defaultValue: '1.5',
|
||||||
description: 'tests-custom branch'),
|
description: 'tests-custom branch'),
|
||||||
string(name: 'TESTS_FUZZ_BRANCH',
|
string(name: 'TESTS_FUZZ_BRANCH',
|
||||||
defaultValue: '1.4',
|
defaultValue: '1.5',
|
||||||
description: 'tests-fuzz-regression branch'),
|
description: 'tests-fuzz-regression branch'),
|
||||||
string(name: 'BUILD_PIPELINES_PATH',
|
string(name: 'BUILD_PIPELINES_PATH',
|
||||||
defaultValue: 'ClamAV/build-pipelines',
|
defaultValue: 'ClamAV/build-pipelines',
|
||||||
|
@ -31,19 +31,19 @@ properties(
|
||||||
defaultValue: 'ClamAV/test-pipelines',
|
defaultValue: 'ClamAV/test-pipelines',
|
||||||
description: 'test-pipelines path for clamav in Jenkins'),
|
description: 'test-pipelines path for clamav in Jenkins'),
|
||||||
string(name: 'BUILD_PIPELINE',
|
string(name: 'BUILD_PIPELINE',
|
||||||
defaultValue: 'build-1.4',
|
defaultValue: 'build-1.5',
|
||||||
description: 'test-pipelines branch for build acceptance'),
|
description: 'test-pipelines branch for build acceptance'),
|
||||||
string(name: 'PACKAGE_PIPELINE',
|
string(name: 'PACKAGE_PIPELINE',
|
||||||
defaultValue: 'package-1.4',
|
defaultValue: 'package-1.5',
|
||||||
description: 'test-pipelines branch for package tests.'),
|
description: 'test-pipelines branch for package tests.'),
|
||||||
string(name: 'REGULAR_PIPELINE',
|
string(name: 'REGULAR_PIPELINE',
|
||||||
defaultValue: 'regular-1.4',
|
defaultValue: 'regular-1.5',
|
||||||
description: 'test-pipelines branch for regular tests.'),
|
description: 'test-pipelines branch for regular tests.'),
|
||||||
string(name: 'CUSTOM_PIPELINE',
|
string(name: 'CUSTOM_PIPELINE',
|
||||||
defaultValue: 'custom-1.4',
|
defaultValue: 'custom-1.5',
|
||||||
description: 'test-pipelines branch for custom tests'),
|
description: 'test-pipelines branch for custom tests'),
|
||||||
string(name: 'FUZZ_PIPELINE',
|
string(name: 'FUZZ_PIPELINE',
|
||||||
defaultValue: 'fuzz-regression-1.4',
|
defaultValue: 'fuzz-regression-1.5',
|
||||||
description: 'test-pipelines branch for fuzz regression tests'),
|
description: 'test-pipelines branch for fuzz regression tests'),
|
||||||
string(name: 'FUZZ_CORPUS_BRANCH',
|
string(name: 'FUZZ_CORPUS_BRANCH',
|
||||||
defaultValue: 'master',
|
defaultValue: 'master',
|
||||||
|
|
15
NEWS.md
15
NEWS.md
|
@ -3,6 +3,21 @@
|
||||||
Note: This file refers to the official packages. Things described here may
|
Note: This file refers to the official packages. Things described here may
|
||||||
differ slightly from third-party binary packages.
|
differ slightly from third-party binary packages.
|
||||||
|
|
||||||
|
## 1.5.0
|
||||||
|
|
||||||
|
ClamAV 1.5.0 includes the following improvements and changes:
|
||||||
|
|
||||||
|
### Major changes
|
||||||
|
|
||||||
|
### Other improvements
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
|
||||||
|
### Acknowledgments
|
||||||
|
|
||||||
|
Special thanks to the following people for code contributions and bug reports:
|
||||||
|
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
ClamAV 1.4.0 includes the following improvements and changes:
|
ClamAV 1.4.0 includes the following improvements and changes:
|
||||||
|
|
|
@ -190,6 +190,8 @@ enum FunctionalityLevels {
|
||||||
FUNC_LEVEL_1_3_1 = 201, /**< LibClamAV release 1.3.1 */
|
FUNC_LEVEL_1_3_1 = 201, /**< LibClamAV release 1.3.1 */
|
||||||
|
|
||||||
FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
|
FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
|
||||||
|
|
||||||
|
FUNC_LEVEL_1_5 = 220, /**< LibClamAV release 1.5.0 */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
* in re-enabling affected modules.
|
* in re-enabling affected modules.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CL_FLEVEL 210
|
#define CL_FLEVEL 220
|
||||||
#define CL_FLEVEL_DCONF CL_FLEVEL
|
#define CL_FLEVEL_DCONF CL_FLEVEL
|
||||||
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
|
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue