Add transport provider status to message buffer
[ric-plt/lib/rmr.git] / src / bindings / rmr-python / Changelog.md
1 # Change Log
2 All notable changes to this project will be documented in this file.
3
4 The format is based on [Keep a Changelog](http://keepachangelog.com/)
5 and this project adheres to [Semantic Versioning](http://semver.org/).
6
7 ## [0.10.4] - 8/08/2019
8     * Fix underlying problem getting errno from some environments; now references new RMR message field to get errno value.
9         * Add /usr/local/lib64 to tox environment variable to support systems where libraries natually install in lib64 rather than lib.
10
11 ## [0.10.3] - 7/31/2019
12     * (Correctly) Include license here per Jira RICPLT-1855
13
14 ## [0.10.2] - 7/31/2019
15     * Include license here per Jira RICPLT-1855
16
17 ## [0.10.0] - 5/15/2019
18     * Fix a bug in rmr mock that prevented it for being used for rmr_rcv (was only usable for rmr_torcv)
19     * Add more unit tests, esp for message summary
20     * Remove meid truncation in the case where a nil is present mid string
21     * Change the defaul mock of meid and get_src to something more useful
22
23 ## [0.9.0] - 5/13/2019
24     * Add a new module for mocking out rmr-python, useful for other packages that depend on rmr-python
25
26 ## [0.8.4] - 5/10/2019
27     * Add some unit tests; more to come
28
29 ## [0.8.3] - 5/8/2019
30     * Better loop indexing in meid string handling
31
32 ## [0.8.2] - 5/8/2019
33     * Fix examples bug
34     * add liscneses for LF push
35
36 ## [0.8.1] - 5/7/2019
37     * Better andling of meid in message summary
38
39 ## [0.8.0] - 5/7/2019
40     * Refactor some code to be more functional
41     * Put back RMR_MAX_RCV_BYTES as a constant
42     * Add tox.ini, although right now it only LINTs
43
44 ## [0.7.0] - 5/6/2019
45     * Add constant fetching from RMr library
46
47 ## [0.6.0] - 5/6/2019
48     * Add a new field to rmr_mbuf_t: sub_id
49     * Fix prior commits lint-ailing python style
50
51 ## [0.5.0] - 5/3/2019
52     * Add errno access via new function: rmr.errno()
53     * Add new functions to access new RMr header fields: get_src, get_meid, rmr_bytes2meid
54     * Add new RMr constants for error states
55
56 ## [0.4.1] - 4/8/2019
57     * Fix a non-ascii encoding issue
58
59 ## [0.4.0] - 3/28/2019
60     * Greatly imroved test sender/receiver
61     * Three new functions implemented (rmr_close, rmr_set_stimeout, rmr_payload_size)
62
63 ## [0.3.0] - 3/26/2019
64     * Support a new receive function that (hurray!) has a timeout
65
66 ## [0.2.1] - 3/25/2019
67     * Add two new MR states
68
69 ## [0.2.0] - 3/25/2019
70     * Switch to NNG from nanomessage
71
72 ## [0.1.0] - 3/14/2019
73     * Initial Creation