From: E. Scott Daniels Date: Tue, 28 Apr 2020 15:10:48 +0000 (-0400) Subject: Bump version to 1.0.0 for upcoming release X-Git-Tag: 1.0.0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Ftags%2F1.0.0;p=ric-plt%2Fxapp-frame-cpp.git Bump version to 1.0.0 for upcoming release Version bump needed to force a rebuild of the package by the CI jobs (change in CI to package with the standard install prefix). Issue-ID: RIC-148 Signed-off-by: E. Scott Daniels Change-Id: I2976b9224bcdd41e108eeac3fc900ab52b59927c --- diff --git a/CHANGES b/CHANGES index 05014d1..3833dbd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ # This file contains a brief summary of each version bump. +2020 April 28; version 1.0.0 + Bump version to force package build (old CI version added + incorrect install prefix). Bump to 1.0.0 for release. + 2020 March 27; version 0.1.2 Changes identified by sonar (missing copy/move builders) rmr_dump example programme diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e65e5f..391070d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,9 +28,9 @@ project( ricxfcpp ) cmake_minimum_required( VERSION 3.5 ) -set( major_version "0" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this -set( minor_version "1" ) -set( patch_level "2" ) +set( major_version "1" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this +set( minor_version "0" ) +set( patch_level "0" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) set( install_inc "include/ricxfcpp" )