diff --git a/CHANGES b/CHANGES index 27bcd17c7..3e5075a00 100644 --- a/CHANGES +++ b/CHANGES @@ -7,7 +7,7 @@ or get the entire source code repository and view log history: $ git clone https://github.com/greenbone/openvas.git $ cd openvas && git checkout openvas-scanner-6.0 && git log -openvas-scanner 6.0.2 (unreleased) +openvas-scanner 6.0.2 (2020-05-12) This is the second patch release of the openvas-scanner module 6.0 for the Greenbone Vulnerability Management (GVM) framework. @@ -19,8 +19,9 @@ Main changes compared to openvas-scanner 6.0.1: has been fixed. * Improve signal handling when update vhosts list. * Increase size of buffer for preferences to allow for up to 105K NVTs. -* Perform the sca even if there are missing plugins in the nvticache. +* Perform the scan even if there are missing plugins in the nvticache. * Drop HTTP sync. +* Use new URL for GCF rsync. openvas-scanner 6.0.1 (2019-07-17) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a3fee7bf..cc5efb188 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required (VERSION 3.0) message ("-- Configuring the Scanner...") project (openvas-scanner - VERSION 6.0.1 + VERSION 6.0.2 LANGUAGES C) if (POLICY CMP0005) diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt index 3ed7fa205..74702f25a 100644 --- a/misc/CMakeLists.txt +++ b/misc/CMakeLists.txt @@ -96,7 +96,7 @@ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -fPIC") # we require CMake >= 3.0 set (MISC_VERSION_MAJOR 10) set (MISC_VERSION_MINOR 0) -set (MISC_VERSION_PATCH 1) +set (MISC_VERSION_PATCH 2) if (PROJECT_BETA_RELEASE) set (MISC_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}") diff --git a/nasl/CMakeLists.txt b/nasl/CMakeLists.txt index 6c3910db8..8d60e4ee9 100644 --- a/nasl/CMakeLists.txt +++ b/nasl/CMakeLists.txt @@ -23,7 +23,7 @@ # we require CMake >= 3.0 set (NASL_VERSION_MAJOR 10) set (NASL_VERSION_MINOR 0) -set (NASL_VERSION_PATCH 1) +set (NASL_VERSION_PATCH 2) if (PROJECT_BETA_RELEASE) set (NASL_VERSION_SUFFIX "+beta${PROJECT_BETA_RELEASE}")