Skip to content

Commit

Permalink
Merge pull request #1247 from timopollmeier/prepare-20.8.0-release
Browse files Browse the repository at this point in the history
Prepare 20.8.0 release
  • Loading branch information
bjoernricks authored Aug 11, 2020
2 parents a797e5e + bfc53a5 commit ac4498c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [20.08] (unreleased)
## [20.8.0] (2020-08-11)

### Added
- Add setting "BPM Dashboard Configuration" [#764](https://github.com/greenbone/gvmd/pull/764)
Expand Down Expand Up @@ -163,7 +163,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Remove parallel from target options. [#1119](https://github.com/greenbone/gvmd/pull/1119)
- Remove default port list from CREATE_TARGET [#1151](https://github.com/greenbone/gvmd/pull/1151)

[20.08]: https://github.com/greenbone/gvmd/compare/v9.0.0...gvmd-20.08
[20.8.0]: https://github.com/greenbone/gvmd/compare/v9.0.0...v20.8.0

## [9.0.0] (2019-10-11)

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ message ("-- Configuring Greenbone Vulnerability Manager...")
# VERSION: Set patch version for stable releases, e.g. "9.0.0",
# unset patch version for prereleases, e.g. "9.0"
project (gvm
VERSION 20.8
VERSION 20.8.0
LANGUAGES C)

if (POLICY CMP0005)
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Prerequisites:
* cmake >= 3.0 (Debian package: cmake)
* glib-2.0 >= 2.42 (Debian package: libglib2.0-dev)
* gnutls >= 3.2.15 (Debian package: libgnutls28-dev)
* libgvm_base, libgvm_util, libgvm_osp, libgvm_gmp >= 20.08 ([gvm-libs](https://github.com/greenbone/gvm-libs/tree/gvm-libs-20.08) component)
* libgvm_base, libgvm_util, libgvm_osp, libgvm_gmp >= 20.08.0 ([gvm-libs](https://github.com/greenbone/gvm-libs/tree/gvm-libs-20.08) component)
* PostgreSQL database >= 9.6 (Debian packages: libpq-dev postgresql-server-dev-11)
* pkg-config (Debian package: pkg-config)
* libical >= 1.0.0 (Debian package: libical-dev)
Expand Down
8 changes: 4 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ find_package (Threads)
## list and throw an error, otherwise long install-cmake-install-cmake cycles
## might occur.

pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=20.8)
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=20.8)
pkg_check_modules (LIBGVM_OSP REQUIRED libgvm_osp>=20.8)
pkg_check_modules (LIBGVM_GMP REQUIRED libgvm_gmp>=20.8)
pkg_check_modules (LIBGVM_BASE REQUIRED libgvm_base>=20.8.0)
pkg_check_modules (LIBGVM_UTIL REQUIRED libgvm_util>=20.8.0)
pkg_check_modules (LIBGVM_OSP REQUIRED libgvm_osp>=20.8.0)
pkg_check_modules (LIBGVM_GMP REQUIRED libgvm_gmp>=20.8.0)
pkg_check_modules (GNUTLS REQUIRED gnutls>=3.2.15)
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.42)
pkg_check_modules (LIBICAL REQUIRED libical>=1.00)
Expand Down

0 comments on commit ac4498c

Please sign in to comment.