X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fbindings%2Frmr-python%2Fdocs%2FChangelog.rst;h=721143b478e127a32b27770d435fe009ed64fd9c;hb=369f53b364352e2520fd451a579cbc429e7188e2;hp=3a46b5ffa79bc67deb87aca1827ca7946f180ad4;hpb=0cb4b57403307f128b3597a52fa77cbc8524f078;p=ric-plt%2Flib%2Frmr.git diff --git a/src/bindings/rmr-python/docs/Changelog.rst b/src/bindings/rmr-python/docs/Changelog.rst index 3a46b5f..721143b 100644 --- a/src/bindings/rmr-python/docs/Changelog.rst +++ b/src/bindings/rmr-python/docs/Changelog.rst @@ -7,6 +7,49 @@ The format is based on `Keep a Changelog `__ and this project adheres to `Semantic Versioning `__. +[0.13.0] - 9/27/2019 +-------------------- + +:: + * Add a helpers module to provide extensions and helper functions such as receive all queued messages. + * Enhance unit test to check only for RMR constants which are needed. + * Correct unprintable characters in documentation. + + +[0.12.0] - 8/23/2019 +-------------------- + +:: + * Add final unit tests for rmr.py; unit test coverage for rmr python is about 95%. The remaining functions are dangerous to unit test directly, e.g., rcv which may block forever + * Fix a bug where meid was being intepreted as bytes (but then cast into a string); the correct interpretation is a string, so now it will truncate after a null byte. + * Removes access to the raw function rmr_get_meid(ptr, dest) in favor of just rmr_get_meid(ptr). Also get_meid is now rmr_get_meid since it wasn't consistent with the naming. + + +[0.11.0] - 8/21/2019 +-------------------- + +:: + * Overhaul unit tests to remove mocking from the rmr tests, which gives much greater confidence in changing the code. More is still needed however, specifically test sends and test receives. + * Adds an alias rmr_set_meid to rmr_bytes2meid for naming consistency. + * Found a possible inconsistency/bug that requires further investigation later; setting meid takes bytes, but getting it returns a string. + + +[0.10.8] - 8/20/2019 +-------------------- + +:: + * Fix invocation of _rmr_alloc function + + +[0.10.7] - 8/14/2019 +-------------------- + +:: + * Finish sphinx documentation + * Make public functions that wrap ctype declarions, allowing for docstrings + * Fix a bug where rmr_set_stimeout was pointing to the wrong function + + [0.10.6] - 8/13/2019 --------------------