Browse code

Added 0.101.1 version information, flevel enum value. Increased the FLEVEL setting to 110 for 0.102.0 devel. Increased the libclamav revision value to account for the clamav-types.h change.

Micah Snyder authored on 2018/12/07 03:13:01
Showing 7 changed files
... ...
@@ -17,6 +17,18 @@ The ClamAV team thanks the following individuals for their code submissions:
17 17
 
18 18
 -
19 19
 
20
+## 0.101.1
21
+
22
+ClamAV 0.101.1 is an urgent patch release to address an issue in 0.101.0
23
+specifically for developers that depend on libclamav.
24
+
25
+The issue in 0.101.0 is that `clamav.h` required supporting headers that were
26
+not provided on `make install`.
27
+
28
+To address this issue, the internal `cltypes.h` header has been replaced by
29
+a `clamav-types.h` that is generated on `./configure` and will be installed
30
+alongside `clamav.h`.
31
+
20 32
 ## 0.101.0
21 33
 
22 34
 ClamAV 0.101.0 is a feature release with an assortment of improvements that
... ...
@@ -5932,7 +5932,7 @@ $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
5932 5932
 VERSION="0.102.0-devel-`date +%Y%m%d`"
5933 5933
 
5934 5934
 LC_CURRENT=9
5935
-LC_REVISION=0
5935
+LC_REVISION=1
5936 5936
 LC_AGE=0
5937 5937
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
5938 5938
 
... ...
@@ -1,4 +1,4 @@
1
-# Clam AntiVirus 0.101.0 *User Manual*
1
+# Clam AntiVirus 0.101.1 *User Manual*
2 2
 
3 3
 ![image](UserManual/images/demon.png)
4 4
 
... ...
@@ -6,9 +6,9 @@ If you wish to build ClamAV from source using Visual Studio 2015, please head ov
6 6
 
7 7
 Important: Installing ClamAV using the Installer will require Administrator privileges.
8 8
 
9
-1. Download: http://www.clamav.net/downloads/production/ClamAV-0.101.0.exe
9
+1. Download: http://www.clamav.net/downloads/production/ClamAV-0.101.1.exe
10 10
 2. Locate the file in your Downloads directory.
11
-3. Right-click on `ClamAV-0.101.0.exe` and select `Run as administrator`. You may receive a warning message along the lines of "Windows protected your PC".  Select `More info` and then select `Run anyway`.
11
+3. Right-click on `ClamAV-0.101.1.exe` and select `Run as administrator`. You may receive a warning message along the lines of "Windows protected your PC".  Select `More info` and then select `Run anyway`.
12 12
 4. Select `I accept the agreement` and click `Next`.
13 13
 5. Click `Next` again. If you've removed a previous installation of ClamAV, you may receive the prompt "The folder ... already exists...". If you do, select `Yes`.
14 14
 6. Click `Install`.
... ...
@@ -28,9 +28,9 @@ Continue on to "First Time Set-Up" below...
28 28
 
29 29
 ## Install using the ClamAV Portable Install Package
30 30
 
31
-1. Download: https://www.clamav.net/downloads/production/clamav-0.101.0-win-x64-portable.zip
31
+1. Download: https://www.clamav.net/downloads/production/clamav-0.101.1-win-x64-portable.zip
32 32
 2. Unzip it.
33
-3. Open the `clamav-0.101.0-win-x64-portable` directory.
33
+3. Open the `clamav-0.101.1-win-x64-portable` directory.
34 34
 4. Hold down Shift and then right-click on the background in the current directory (but not on one of the files). Select `"Open PowerShell window here"`. If that option doesn't appear, try again.
35 35
 
36 36
 Continue on to "First Time Set-Up"...
... ...
@@ -114,6 +114,7 @@ enum FunctionalityLevels {
114 114
     FUNC_LEVEL_0100_2      = 93,  /* LibClamAV release 0.100.2 */
115 115
     FUNC_LEVEL_0101_0_BETA = 100, /* LibClamAV beta release 0.101.0-beta */
116 116
     FUNC_LEVEL_0101_0      = 101, /* LibClamAV release 0.101.0, 0.101.0-rc */
117
+    FUNC_LEVEL_0101_1      = 102, /* LibClamAV release 0.101.1 */
117 118
     FUNC_LEVEL_0102_0_BETA = 110, /* LibClamAV beta release 0.102.0-beta */
118 119
     FUNC_LEVEL_100         = 255  /* future release candidate */
119 120
 };
... ...
@@ -71,7 +71,7 @@
71 71
  * in re-enabling affected modules.
72 72
  */
73 73
 
74
-#define CL_FLEVEL 101
74
+#define CL_FLEVEL 110
75 75
 #define CL_FLEVEL_DCONF CL_FLEVEL
76 76
 #define CL_FLEVEL_SIGTOOL CL_FLEVEL
77 77
 
... ...
@@ -3,7 +3,7 @@ dnl VERSION="devel-`date +%Y%m%d`"
3 3
 VERSION="0.102.0-devel-`date +%Y%m%d`"
4 4
 
5 5
 LC_CURRENT=9
6
-LC_REVISION=0
6
+LC_REVISION=1
7 7
 LC_AGE=0
8 8
 LIBCLAMAV_VERSION="$LC_CURRENT":"$LC_REVISION":"$LC_AGE"
9 9
 AC_SUBST([LIBCLAMAV_VERSION])