Skip to content

Commit a8f8736

Browse files
committed
Bump version to 1.2.1 and FLEVEL to 191
1 parent 7d26bc8 commit a8f8736

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
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.2.0"
25+
VERSION "1.2.1"
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.2.0',
13+
defaultValue: '1.2.1',
1414
description: 'ClamAV version string'),
1515
string(name: 'FRAMEWORK_BRANCH',
1616
defaultValue: '1.2',

NEWS.md

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

6+
## 1.2.1
7+
8+
ClamAV 1.2.1 is a critical patch release with the following fixes:
9+
10+
Special thanks to the following people for code contributions and bug reports:
11+
612
## 1.2.0
713

814
ClamAV 1.2.0 includes the following improvements and changes:

libclamav/bytecode_api.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ enum FunctionalityLevels {
170170

171171
FUNC_LEVEL_1_1 = 180, /**< LibClamAV release 1.1.0 */
172172

173-
FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */
173+
FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */
174+
FUNC_LEVEL_1_2_1 = 191, /**< LibClamAV release 1.2.1 */
174175
};
175176

176177
/**

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 190
76+
#define CL_FLEVEL 191
7777
#define CL_FLEVEL_DCONF CL_FLEVEL
7878
#define CL_FLEVEL_SIGTOOL CL_FLEVEL
7979

0 commit comments

Comments
 (0)