Add rmr-python
[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.0] - 5/15/2019
8     * Fix a bug in rmr mock that prevented it for being used for rmr_rcv (was only usable for rmr_torcv)
9     * Add more unit tests, esp for message summary
10     * Remove meid truncation in the case where a nil is present mid string
11     * Change the defaul mock of meid and get_src to something more useful
12
13 ## [0.9.0] - 5/13/2019
14     * Add a new module for mocking out rmr-python, useful for other packages that depend on rmr-python
15
16 ## [0.8.4] - 5/10/2019
17     * Add some unit tests; more to come
18
19 ## [0.8.3] - 5/8/2019
20     * Better loop indexing in meid string handling
21
22 ## [0.8.2] - 5/8/2019
23     * Fix examples bug
24     * add liscneses for LF push
25
26 ## [0.8.1] - 5/7/2019
27     * Better andling of meid in message summary
28
29 ## [0.8.0] - 5/7/2019
30     * Refactor some code to be more functional
31     * Put back RMR_MAX_RCV_BYTES as a constant
32     * Add tox.ini, although right now it only LINTs
33
34 ## [0.7.0] - 5/6/2019
35     * Add constant fetching from RMr library
36
37 ## [0.6.0] - 5/6/2019
38     * Add a new field to rmr_mbuf_t: sub_id
39     * Fix prior commits lint-ailing python style
40
41 ## [0.5.0] - 5/3/2019
42     * Add errno access via new function: rmr.errno()
43     * Add new functions to access new RMr header fields: get_src, get_meid, rmr_bytes2meid
44     * Add new RMr constants for error states
45
46 ## [0.4.1] - 4/8/2019
47     * Fix a non-ascii encoding issue
48
49 ## [0.4.0] - 3/28/2019
50     * Greatly imroved test sender/receiver
51     * Three new functions implemented (rmr_close, rmr_set_stimeout, rmr_payload_size)
52
53 ## [0.3.0] - 3/26/2019
54     * Support a new receive function that (hurray!) has a timeout
55
56 ## [0.2.1] - 3/25/2019
57     * Add two new MR states
58
59 ## [0.2.0] - 3/25/2019
60     * Switch to NNG from nanomessage
61
62 ## [0.1.0] - 3/14/2019
63     * Initial Creation