Skip to content

Commit 7654b48

Browse files
committed
Bump version to 1.0.7 and FLEVEL to 167
1 parent b977f2e commit 7654b48

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
2222
set(VERSION_SUFFIX "")
2323

2424
project( ClamAV
25-
VERSION "1.0.6"
25+
VERSION "1.0.7"
2626
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
2727

2828
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ properties(
1010
parameters(
1111
[
1212
string(name: 'VERSION',
13-
defaultValue: '1.0.6',
13+
defaultValue: '1.0.7',
1414
description: 'ClamAV version string'),
1515
string(name: 'FRAMEWORK_BRANCH',
1616
defaultValue: '1.0',

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Note: This file refers to the official packages. Things described here may
44
differ slightly from third-party binary packages.
55

6+
## 1.0.7
7+
8+
ClamAV 1.0.7 is a patch release with the following fixes:
9+
610
## 1.0.6
711

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

libclamav/bytecode_api.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ enum FunctionalityLevels {
170170
FUNC_LEVEL_1_0_4 = 164, /**< LibClamAV release 1.0.4 */
171171
FUNC_LEVEL_1_0_5 = 165, /**< LibClamAV release 1.0.5 */
172172
FUNC_LEVEL_1_0_6 = 166, /**< LibClamAV release 1.0.6 */
173+
FUNC_LEVEL_1_0_7 = 167, /**< LibClamAV release 1.0.7 */
173174
};
174175

175176
/**

libclamav/others.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
* in re-enabling affected modules.
7474
*/
7575

76-
#define CL_FLEVEL 166
76+
#define CL_FLEVEL 167
7777
#define CL_FLEVEL_DCONF CL_FLEVEL
7878
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
7979

win32/res/common.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#define REPO_VERSION VERSION
77
#endif
88

9-
#define RES_VER_Q 1,0,6,0
10-
#define RES_VER_S "ClamAV 1.0.6"
9+
#define RES_VER_Q 1,0,7,0
10+
#define RES_VER_S "ClamAV 1.0.7"
1111

1212
VS_VERSION_INFO VERSIONINFO
1313
FILEVERSION RES_VER_Q

0 commit comments

Comments
 (0)