Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.2.1 and FLEVEL to 191 #1043

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.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})
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.2.0',
defaultValue: '1.2.1',
description: 'ClamAV version string'),
string(name: 'FRAMEWORK_BRANCH',
defaultValue: '1.2',
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion libclamav/bytecode_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
micahsnyder marked this conversation as resolved.
Show resolved Hide resolved
FUNC_LEVEL_1_2_1 = 191, /**< LibClamAV release 1.2.1 */
};

/**
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 190
#define CL_FLEVEL 191
#define CL_FLEVEL_DCONF CL_FLEVEL
#define CL_FLEVEL_SIGTOOL CL_FLEVEL

Expand Down
Loading