Browse code

Bump version to 1.4.1 and FLEVEL to 211

Micah Snyder authored on 2024/08/29 00:08:19
Showing 5 changed files
... ...
@@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
22 22
 set(VERSION_SUFFIX "")
23 23
 
24 24
 project( ClamAV
25
-         VERSION "1.4.0"
25
+         VERSION "1.4.1"
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,7 +10,7 @@ properties(
10 10
         parameters(
11 11
             [
12 12
                 string(name: 'VERSION',
13
-                       defaultValue: '1.4.0',
13
+                       defaultValue: '1.4.1',
14 14
                        description: 'ClamAV version string'),
15 15
                 string(name: 'FRAMEWORK_BRANCH',
16 16
                        defaultValue: '1.4',
... ...
@@ -3,6 +3,10 @@
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.1
7
+
8
+ClamAV 1.4.1 is a critical patch release with the following fixes:
9
+
6 10
 ## 1.4.0
7 11
 
8 12
 ClamAV 1.4.0 includes the following improvements and changes:
... ...
@@ -157,6 +157,7 @@ enum FunctionalityLevels {
157 157
     FUNC_LEVEL_0103_9    = 130, /**< LibClamAV release 0.103.9 */
158 158
     FUNC_LEVEL_0103_10   = 131, /**< LibClamAV release 0.103.10 */
159 159
     FUNC_LEVEL_0103_11   = 132, /**< LibClamAV release 0.103.11 */
160
+    FUNC_LEVEL_0103_12   = 133, /**< LibClamAV release 0.103.12 */
160 161
 
161 162
     FUNC_LEVEL_0104   = 140, /**< LibClamAV release 0.104.0 */
162 163
     FUNC_LEVEL_0104_1 = 141, /**< LibClamAV release 0.104.1 */
... ...
@@ -175,6 +176,7 @@ enum FunctionalityLevels {
175 175
     FUNC_LEVEL_1_0_4 = 164, /**< LibClamAV release 1.0.4 */
176 176
     FUNC_LEVEL_1_0_5 = 165, /**< LibClamAV release 1.0.5 */
177 177
     FUNC_LEVEL_1_0_6 = 166, /**< LibClamAV release 1.0.6 */
178
+    FUNC_LEVEL_1_0_7 = 167, /**< LibClamAV release 1.0.7 */
178 179
 
179 180
     FUNC_LEVEL_1_1   = 180, /**< LibClamAV release 1.1.0 */
180 181
     FUNC_LEVEL_1_1_1 = 181, /**< LibClamAV release 1.1.1 */
... ...
@@ -188,8 +190,10 @@ enum FunctionalityLevels {
188 188
 
189 189
     FUNC_LEVEL_1_3   = 200, /**< LibClamAV release 1.3.0 */
190 190
     FUNC_LEVEL_1_3_1 = 201, /**< LibClamAV release 1.3.1 */
191
+    FUNC_LEVEL_1_3_2 = 202, /**< LibClamAV release 1.3.2 */
191 192
 
192
-    FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
193
+    FUNC_LEVEL_1_4   = 210, /**< LibClamAV release 1.4.0 */
194
+    FUNC_LEVEL_1_4_1 = 211, /**< LibClamAV release 1.4.1 */
193 195
 };
194 196
 
195 197
 /**
... ...
@@ -69,7 +69,7 @@
69 69
  * in re-enabling affected modules.
70 70
  */
71 71
 
72
-#define CL_FLEVEL 210
72
+#define CL_FLEVEL 211
73 73
 #define CL_FLEVEL_DCONF CL_FLEVEL
74 74
 #define CL_FLEVEL_SIGTOOL CL_FLEVEL
75 75