Update RMR version to 4.8.0 82/7182/1 4.8.0
authorTimo Tietavainen <timo.tietavainen@nokia.com>
Thu, 2 Dec 2021 17:40:55 +0000 (19:40 +0200)
committerTimo Tietavainen <timo.tietavainen@nokia.com>
Thu, 2 Dec 2021 17:40:55 +0000 (19:40 +0200)
Update new RMR version to be 4.8.0 and update release documents.
Version 4.8.0 contains below changes:
* Fixing memory leak in python support function (RIC-858).
* New API added for debugging rmr rx queue (RIC-838).

Issue-ID: RIC-858

Signed-off-by: Timo Tietavainen <timo.tietavainen@nokia.com>
Change-Id: I3feecf10efad3ab28bffef912492fa6ab039aca8

CHANGES_CORE.txt
CMakeLists.txt
docs/rel-notes.rst

index 83d26a5..2aacd75 100644 (file)
@@ -5,6 +5,10 @@
 # API and build change  and fix summaries. Doc corrections
 # and/or changes are not mentioned here; see the commit messages.
 
+2021 December 2; version 4.8.0
+       Fixing memory leak in python support function (RIC-858).
+       New API added for debugging rmr rx queue (RIC-838).
+
 2021 April 22; version 4.7.4
        Beef up unit testing in SI package and fix a few static analysis
        bugs. (RIC-777)
index 2d454c3..03af953 100644 (file)
@@ -41,8 +41,8 @@ project( rmr LANGUAGES C )
 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 "7" )
-set( patch_level "4" )
+set( minor_version "8" )
+set( patch_level "0" )
 
 set( install_root "${CMAKE_INSTALL_PREFIX}" )
 set( install_inc "include/rmr" )
index 5bcd75f..410bd10 100644 (file)
@@ -22,6 +22,14 @@ the need to leap frog versions ceased, and beginning with
 version 4.0.0, the RMR versions should no longer skip.
 
 
+2021 December 2; version 4.8.0
+------------------------------
+
+Fixing memory leak in python support function (RIC-858).
+New API added for debugging rmr rx queue (RIC-838).
+
+
+
 2021 April 22; version 4.7.4
 ----------------------------