Bumped version from 1.0.1 -> 1.0.2

FLEVEL 161 -> 162

Update the NEWS to have a section for the new version.
pull/901/head
Micah Snyder 2 years ago committed by Micah Snyder
parent 7f4dfa3805
commit f9f4bd3193
  1. 2
      CMakeLists.txt
  2. 2
      Jenkinsfile
  3. 6
      NEWS.md
  4. 1
      libclamav/bytecode_api.h
  5. 4
      win32/res/common.rc

@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "")
project( ClamAV
VERSION "1.0.1"
VERSION "1.0.2"
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
Jenkinsfile vendored

@ -10,7 +10,7 @@ properties(
parameters(
[
string(name: 'VERSION',
defaultValue: '1.0.1',
defaultValue: '1.0.2',
description: 'ClamAV version string'),
string(name: 'FRAMEWORK_BRANCH',
defaultValue: '1.0',

@ -3,6 +3,12 @@
Note: This file refers to the official packages. Things described here may
differ slightly from third-party binary packages.
## 1.0.2
ClamAV 1.0.2 is a critical patch release with the following fixes:
Special thanks to the following people for code contributions and bug reports:
## 1.0.1
ClamAV 1.0.1 is a critical patch release with the following fixes:

@ -165,6 +165,7 @@ enum FunctionalityLevels {
FUNC_LEVEL_1_0 = 160, /**< LibClamAV release 1.0.0 */
FUNC_LEVEL_1_0_1 = 161, /**< LibClamAV release 1.0.1 */
FUNC_LEVEL_1_0_2 = 162, /**< LibClamAV release 1.0.2 */
};
/**

@ -6,8 +6,8 @@
#define REPO_VERSION VERSION
#endif
#define RES_VER_Q 1,0,1,0
#define RES_VER_S "ClamAV 1.0.1"
#define RES_VER_Q 1,0,2,0
#define RES_VER_S "ClamAV 1.0.2"
VS_VERSION_INFO VERSIONINFO
FILEVERSION RES_VER_Q

Loading…
Cancel
Save