From: E. Scott Daniels Date: Tue, 17 Nov 2020 20:26:26 +0000 (-0500) Subject: Bump package version in CMake to 4.4.5 X-Git-Tag: 4.4.5^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=2efdde081e2d8d31ee65907a84d5623e819451e4;p=ric-plt%2Flib%2Frmr.git Bump package version in CMake to 4.4.5 Issue-ID: RIC-695 Signed-off-by: E. Scott Daniels Change-Id: Ibd3549d54dfa3d4c624642ccdcabaf453e27c7b1 --- diff --git a/CHANGES_CORE.txt b/CHANGES_CORE.txt index db2f2e6..0652f29 100644 --- a/CHANGES_CORE.txt +++ b/CHANGES_CORE.txt @@ -5,7 +5,11 @@ # API and build change and fix summaries. Doc correctsions # and/or changes are not mentioned here; see the commit messages. -2020 November 4; Version 4.4.4 +2020 November 17; Version 4.4.5 + Correct bug in round robin group allocation that could lead to + an empty group. (RIC-695) + +2020 November 13; Version 4.4.4 Correct address memory leak in the RTE cleanup. (RIC-674) 2020 November 4; Version 4.4.3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 763c73f..a4ed121 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ cmake_minimum_required( VERSION 3.5 ) set( major_version "4" ) # should be automatically populated from git tag later, but until CI process sets a tag we use this set( minor_version "4" ) -set( patch_level "4" ) +set( patch_level "5" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) set( install_inc "include/rmr" ) diff --git a/docs/rel-notes.rst b/docs/rel-notes.rst index 4384bdc..5ba4f5b 100644 --- a/docs/rel-notes.rst +++ b/docs/rel-notes.rst @@ -22,8 +22,16 @@ the need to leap frog versions ceased, and beginning with version 4.0.0, the RMR versions should no longer skip. -2020 November 4; Version 4.4.4 ------------------------------- +2020 November 17; Version 4.4.5 +------------------------------- + +Correct bug in round robin group allocation that could lead +to an empty group. (RIC-695) + + + +2020 November 13; Version 4.4.4 +------------------------------- Correct address memory leak in the RTE cleanup. (RIC-674)