Skip to content

Commit

Permalink
Bump version to 1.0.6 and FLEVEL to 166
Browse files Browse the repository at this point in the history
  • Loading branch information
micahsnyder committed Apr 3, 2024
1 parent 81ee14a commit 7cec59c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "")

project( ClamAV
VERSION "1.0.5"
VERSION "1.0.6"
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )

set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ properties(
parameters(
[
string(name: 'VERSION',
defaultValue: '1.0.5',
defaultValue: '1.0.6',
description: 'ClamAV version string'),
string(name: 'FRAMEWORK_BRANCH',
defaultValue: '1.0',
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6

ClamAV 1.0.6 is a critical patch release with the following fixes:

## 1.0.5

ClamAV 1.0.5 is a critical patch release with the following fixes:
Expand Down
1 change: 1 addition & 0 deletions libclamav/bytecode_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ enum FunctionalityLevels {
FUNC_LEVEL_1_0_3 = 163, /**< LibClamAV release 1.0.3 */
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 */
};

/**
Expand Down
2 changes: 1 addition & 1 deletion libclamav/others.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
* in re-enabling affected modules.
*/

#define CL_FLEVEL 165
#define CL_FLEVEL 166
#define CL_FLEVEL_DCONF CL_FLEVEL
#define CL_FLEVEL_SIGTOOL CL_FLEVEL

Expand Down
4 changes: 2 additions & 2 deletions win32/res/common.rc
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#define REPO_VERSION VERSION
#endif

#define RES_VER_Q 1,0,5,0
#define RES_VER_S "ClamAV 1.0.5"
#define RES_VER_Q 1,0,6,0
#define RES_VER_S "ClamAV 1.0.6"

VS_VERSION_INFO VERSIONINFO
FILEVERSION RES_VER_Q
Expand Down

0 comments on commit 7cec59c

Please sign in to comment.