Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 1.2.1 and FLEVEL to 191
Browse files Browse the repository at this point in the history
micahsnyder committed Oct 3, 2023

Verified

This commit was signed with the committer’s verified signature.
Avimitin Jiongjia Lu
1 parent 7d26bc8 commit 514e22a
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "")

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

set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ properties(
parameters(
[
string(name: 'VERSION',
defaultValue: '1.2.0',
defaultValue: '1.2.1',
description: 'ClamAV version string'),
string(name: 'FRAMEWORK_BRANCH',
defaultValue: '1.2',
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
Note: This file refers to the official packages. Things described here may
differ slightly from third-party binary packages.

## 1.2.1

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

Special thanks to the following people for code contributions and bug reports:

## 1.2.0

ClamAV 1.2.0 includes the following improvements and changes:
3 changes: 2 additions & 1 deletion libclamav/bytecode_api.h
Original file line number Diff line number Diff line change
@@ -170,7 +170,8 @@ enum FunctionalityLevels {

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

FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */
FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */
FUNC_LEVEL_1_2_1 = 191, /**< LibClamAV release 1.2.1 */
};

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

#define CL_FLEVEL 190
#define CL_FLEVEL 191
#define CL_FLEVEL_DCONF CL_FLEVEL
#define CL_FLEVEL_SIGTOOL CL_FLEVEL

0 comments on commit 514e22a

Please sign in to comment.