Skip to content

Commit

Permalink
Merge pull request #49 from ragusaa/CLAM-2625-UpdateFlevel
Browse files Browse the repository at this point in the history
Updated Version information to match 1.4
  • Loading branch information
micahsnyder committed May 21, 2024
2 parents 7129eb2 + 9f5a42a commit 7a3da3a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "")

project( ClamBCC
VERSION "1.3.0"
VERSION "1.4.0"
DESCRIPTION "ClamAV Bytecode Compiler." )

set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
Expand Down
29 changes: 23 additions & 6 deletions headers/bytecode_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ enum FunctionalityLevels {
FUNC_LEVEL_0103_6 = 127, /**< LibClamAV release 0.103.6 */
FUNC_LEVEL_0103_7 = 128, /**< LibClamAV release 0.103.7 */
FUNC_LEVEL_0103_8 = 129, /**< LibClamAV release 0.103.8 */
FUNC_LEVEL_0103_9 = 130, /**< LibClamAV release 0.103.9 */
FUNC_LEVEL_0103_10 = 131, /**< LibClamAV release 0.103.10 */
FUNC_LEVEL_0103_11 = 132, /**< LibClamAV release 0.103.11 */

FUNC_LEVEL_0104 = 140, /**< LibClamAV release 0.104.0 */
FUNC_LEVEL_0104_1 = 141, /**< LibClamAV release 0.104.1 */
Expand All @@ -167,12 +170,26 @@ 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_1 = 180, /**< LibClamAV release 1.1.0 */

FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */

FUNC_LEVEL_1_3 = 200, /**< LibClamAV release 1.3.0 */
FUNC_LEVEL_1_0_2 = 162, /**< LibClamAV release 1.0.2 */
FUNC_LEVEL_1_0_3 = 163, /**< LibClamAV release 1.0.3 */
FUNC_LEVEL_1_0_4 = 164, /**< LibClamAV release 1.0.4 */
FUNC_LEVEL_1_0_5 = 165, /**< LibClamAV release 1.0.5 */
FUNC_LEVEL_1_0_6 = 166, /**< LibClamAV release 1.0.6 */

FUNC_LEVEL_1_1 = 180, /**< LibClamAV release 1.1.0 */
FUNC_LEVEL_1_1_1 = 181, /**< LibClamAV release 1.1.1 */
FUNC_LEVEL_1_1_2 = 182, /**< LibClamAV release 1.1.2 */
FUNC_LEVEL_1_1_3 = 183, /**< LibClamAV release 1.1.3 */

FUNC_LEVEL_1_2 = 190, /**< LibClamAV release 1.2.0 */
FUNC_LEVEL_1_2_1 = 191, /**< LibClamAV release 1.2.1 */
FUNC_LEVEL_1_2_2 = 192, /**< LibClamAV release 1.2.2 */
FUNC_LEVEL_1_2_3 = 193, /**< LibClamAV release 1.2.3 */

FUNC_LEVEL_1_3 = 200, /**< LibClamAV release 1.3.0 */
FUNC_LEVEL_1_3_1 = 201, /**< LibClamAV release 1.3.1 */

FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
};

/**
Expand Down

0 comments on commit 7a3da3a

Please sign in to comment.