Skip to content

Commit d764d57

Browse files
committed
Prepare 20.08.0 release of GSA
cmake doesn't support a .0X version schema. Therefore it 20.8 must be used instead.
1 parent fa0baa6 commit d764d57

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
7575
- Removed "All SecInfo" section [#1685](https://github.com/greenbone/gsa/pull/1685) [#1695](https://github.com/greenbone/gsa/pull/1695)
7676
- Removed agents [#1903](https://github.com/greenbone/gsa/pull/1903)
7777

78-
[20.08]: https://github.com/greenbone/gsa/compare/gsa-9.0...gsa-20.08
78+
[20.08]: https://github.com/greenbone/gsa/compare/gsa-9.0...v20.8.0
7979

8080
## [9.0.1] - 2020-05-13
8181

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ message ("-- Configuring Greenbone Security Assistant")
2222
# VERSION: Set patch version for stable releases, e.g. "9.0.1",
2323
# unset patch version for prereleases, e.g. "9.0"
2424
project (greenbone-security-assistant
25-
VERSION 20.08.0)
25+
VERSION 20.8.0)
2626

2727
SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
2828

@@ -32,7 +32,7 @@ endif (NOT CMAKE_BUILD_TYPE)
3232

3333
# set if this is in prerelease status, starting at 0 before first beta release,
3434
# unset if this is a stable release series.
35-
set (PROJECT_BETA_RELEASE 0)
35+
# set (PROJECT_BETA_RELEASE 0)
3636

3737
## Retrieve git revision (at configure time)
3838
include (ProjectVersion)

gsa/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cmake_minimum_required (VERSION 3.0)
1919

2020
message ("-- Configuring gsa")
2121

22-
project (gsa VERSION 20.08 LANGUAGES)
22+
project (gsa VERSION 20.8.0 LANGUAGES)
2323

2424
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
2525

gsa/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gsa",
3-
"version": "20.08",
3+
"version": "20.08.0",
44
"description": "Greenbone Security Assistant",
55
"keywords": [
66
"openvas",

gsad/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cmake_minimum_required (VERSION 3.0)
2020

2121
message ("-- Configuring gsad")
2222

23-
project (gsad VERSION 20.08 LANGUAGES C)
23+
project (gsad VERSION 20.8.0 LANGUAGES C)
2424

2525
if (NOT DEFINED PROJECT_VERSION_STRING)
2626
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/../cmake)

0 commit comments

Comments
 (0)