Browse code

Bumped version from 1.3.0 -> 1.4.0-devel for new release changes

rsundriyal authored on 2024/02/06 03:40:30
Showing 5 changed files
... ...
@@ -19,10 +19,10 @@ cmake_policy(SET CMP0087 NEW) # support generator expressions in install(CODE) a
19 19
 #  For release candidate:     set(VERSION_SUFFIX "-rc")
20 20
 #  For release:               set(VERSION_SUFFIX "")
21 21
 string(TIMESTAMP TODAY "%Y%m%d")
22
-set(VERSION_SUFFIX "")
22
+set(VERSION_SUFFIX "-devel-${TODAY}")
23 23
 
24 24
 project( ClamAV
25
-         VERSION "1.3.0"
25
+         VERSION "1.4.0"
26 26
          DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
27 27
 
28 28
 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})
... ...
@@ -10,31 +10,31 @@ properties(
10 10
         parameters(
11 11
             [
12 12
                 string(name: 'VERSION',
13
-                       defaultValue: '1.3.0',
13
+                       defaultValue: '1.4.0',
14 14
                        description: 'ClamAV version string'),
15 15
                 string(name: 'FRAMEWORK_BRANCH',
16
-                       defaultValue: '1.3',
16
+                       defaultValue: '1.4',
17 17
                        description: 'test-framework branch'),
18 18
                 string(name: 'TESTS_BRANCH',
19
-                       defaultValue: '1.3',
19
+                       defaultValue: '1.4',
20 20
                        description: 'tests branch'),
21 21
                 string(name: 'TESTS_CUSTOM_BRANCH',
22
-                       defaultValue: '1.3',
22
+                       defaultValue: '1.4',
23 23
                        description: 'tests-custom branch'),
24 24
                 string(name: 'TESTS_FUZZ_BRANCH',
25
-                       defaultValue: '1.3',
25
+                       defaultValue: '1.4',
26 26
                        description: 'tests-fuzz-regression branch'),
27 27
                 string(name: 'BUILD_PIPELINE',
28
-                       defaultValue: 'build-1.3',
28
+                       defaultValue: 'build-1.4',
29 29
                        description: 'test-pipelines branch for build acceptance'),
30 30
                 string(name: 'REGULAR_PIPELINE',
31
-                       defaultValue: 'regular-1.3',
31
+                       defaultValue: 'regular-1.4',
32 32
                        description: 'test-pipelines branch for regular tests.'),
33 33
                 string(name: 'CUSTOM_PIPELINE',
34
-                       defaultValue: 'custom-1.3',
34
+                       defaultValue: 'custom-1.4',
35 35
                        description: 'test-pipelines branch for custom tests'),
36 36
                 string(name: 'FUZZ_PIPELINE',
37
-                       defaultValue: 'fuzz-regression-1.3',
37
+                       defaultValue: 'fuzz-regression-1.4',
38 38
                        description: 'test-pipelines branch for fuzz regression tests'),
39 39
                 string(name: 'FUZZ_CORPUS_BRANCH',
40 40
                        defaultValue: 'master',
... ...
@@ -3,6 +3,20 @@
3 3
 Note: This file refers to the official packages. Things described here may
4 4
 differ slightly from third-party binary packages.
5 5
 
6
+## 1.4.0
7
+
8
+ClamAV 1.4.0 includes the following improvements and changes:
9
+
10
+### Major changes
11
+
12
+### Other improvements
13
+
14
+### Bug fixes
15
+
16
+### Acknowledgments
17
+
18
+Special thanks to the following people for code contributions and bug reports:
19
+
6 20
 ## 1.3.0
7 21
 
8 22
 ClamAV 1.3.0 includes the following improvements and changes:
... ...
@@ -182,6 +182,8 @@ enum FunctionalityLevels {
182 182
     FUNC_LEVEL_1_2_2 = 192, /**< LibClamAV release 1.2.2 */
183 183
 
184 184
     FUNC_LEVEL_1_3 = 200, /**< LibClamAV release 1.3.0 */
185
+
186
+    FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
185 187
 };
186 188
 
187 189
 /**
... ...
@@ -73,7 +73,7 @@
73 73
  * in re-enabling affected modules.
74 74
  */
75 75
 
76
-#define CL_FLEVEL 200
76
+#define CL_FLEVEL 210
77 77
 #define CL_FLEVEL_DCONF CL_FLEVEL
78 78
 #define CL_FLEVEL_SIGTOOL CL_FLEVEL
79 79