Commit 81cc4a7e5389405c35d4ebc8173b07654160e834
1 parent
8932de65
Update NEWS file
Showing
2 changed files
with
17 additions
and
5 deletions
NEWS
| 1 | -libmodbus 3.1.3 (XXXX-XX-XX) | 1 | +libmodbus 3.1.3 (2016-05-11) |
| 2 | ============================ | 2 | ============================ |
| 3 | 3 | ||
| 4 | -- Introduce offsets in modbus mappings. | ||
| 5 | -- Add some more macros for data manipulation. | 4 | +- New bswap macros for Max OSX by Jakob Bysewski. |
| 5 | +- Fix "wildcard address" in TCP IPv6 by Shoichi Sakane. | ||
| 6 | +- Introduce offsets in modbus mappings with modbus_mapping_new_start_address. | ||
| 7 | + Thanks to Michael Heimpold and Stéphane Raimbault. | ||
| 8 | +- Fix address range in random-test-client. | ||
| 9 | + Thanks to Martin Galvan. | ||
| 10 | +- Add an option to disable tests compilation by Yegor Yefremov. | ||
| 11 | +- Define MSG_DONTWAIT to MSG_NONBLOCK on AIX (#294). | ||
| 12 | + Thanks to Fabrice Cantos. | ||
| 13 | +- Fix building when byteswap.h is not defined by Tomasz Mon. | ||
| 14 | +- Add some more macros for data manipulation and documentation. | ||
| 15 | +- Remove duplicate install of modbus.h (closes #290). | ||
| 16 | + Thanks to Daniel Sutcliffe. | ||
| 17 | +- Move MIGRATION and README.md to dist_doc_DATA target. | ||
| 6 | - Change order of few functions in modbus RTU code. | 18 | - Change order of few functions in modbus RTU code. |
| 7 | - Add entries for modbus_rtu_[get|set]_delay in documentation index. | 19 | - Add entries for modbus_rtu_[get|set]_delay in documentation index. |
| 8 | - Implemented runtime configurable RTS delay by Jimmy Bergström. | 20 | - Implemented runtime configurable RTS delay by Jimmy Bergström. |
| @@ -12,7 +24,7 @@ libmodbus 3.1.3 (XXXX-XX-XX) | @@ -12,7 +24,7 @@ libmodbus 3.1.3 (XXXX-XX-XX) | ||
| 12 | - Added ILLEGAL_DATA_ADDRESS tests for modbus_write_register[|s]. | 24 | - Added ILLEGAL_DATA_ADDRESS tests for modbus_write_register[|s]. |
| 13 | Thanks to Andrey Skvortsov. | 25 | Thanks to Andrey Skvortsov. |
| 14 | - Update documentation of modbus_rtu_set_rts | 26 | - Update documentation of modbus_rtu_set_rts |
| 15 | -- fix rts signal switch time by Hiromasa Ihara. | 27 | +- Fix rts signal switch time by Hiromasa Ihara. |
| 16 | - Improve new_rtu and set_slave documentation (related to #276). | 28 | - Improve new_rtu and set_slave documentation (related to #276). |
| 17 | - Fix late check of ctx in modbus_reply[|_exception] (closes #269). | 29 | - Fix late check of ctx in modbus_reply[|_exception] (closes #269). |
| 18 | - Wait the server for 1 second before running tests (help Travis). | 30 | - Wait the server for 1 second before running tests (help Travis). |
configure.ac
| @@ -13,7 +13,7 @@ | @@ -13,7 +13,7 @@ | ||
| 13 | # | 13 | # |
| 14 | m4_define([libmodbus_version_major], [3]) | 14 | m4_define([libmodbus_version_major], [3]) |
| 15 | m4_define([libmodbus_version_minor], [1]) | 15 | m4_define([libmodbus_version_minor], [1]) |
| 16 | -m4_define([libmodbus_version_micro], [2]) | 16 | +m4_define([libmodbus_version_micro], [3]) |
| 17 | 17 | ||
| 18 | m4_define([libmodbus_release_status], | 18 | m4_define([libmodbus_release_status], |
| 19 | [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot], [release])]) | 19 | [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot], [release])]) |