Commit 5b28fb81af2f929f19954af8e6f22a0d8557e14b

Authored by Stéphane Raimbault
1 parent a4f7996e

Update NEWS file and bump version to 2.9.3

Showing 2 changed files with 14 additions and 1 deletions
  1 +libmodbus 2.9.3 (2010-12-XX)
  2 +============================
  3 +
  4 +- New function to reply to an indication with an exception message
  5 + modbus_reply_exception()
  6 +- Fix missing modbus_flush() in unit tests
  7 +- New functions to manipulate data:
  8 + * MODBUS_GET_INT32_FROM_INT16
  9 + * MODBUS_GET_INT16_FROM_INT8
  10 + * MODBUS_SET_INT16_TO_INT8
  11 +- New function modbus_get_header_length(modbus_t *ctx)
  12 +- Rewrite of the message reading (no more timeouts on exception)
  13 +
1 14 libmodbus 2.9.2 (2010-12-05)
2 15 ============================
3 16  
... ...
configure.ac
... ... @@ -13,7 +13,7 @@
13 13 #
14 14 m4_define([libmodbus_version_major], [2])
15 15 m4_define([libmodbus_version_minor], [9])
16   -m4_define([libmodbus_version_micro], [2])
  16 +m4_define([libmodbus_version_micro], [3])
17 17  
18 18 m4_define([libmodbus_release_status],
19 19 [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot],
... ...