Commit f5939cf740313daf966103fc3a769f103da7ab2a

Authored by Stéphane Raimbault
1 parent da876696

Bump version to 3.1.8

Showing 2 changed files with 16 additions and 1 deletions
  1 +libmodbus 3.1.8 (2022-08-17)
  2 +============================
  3 +
  4 +- Major rewrite of documentation with Material for mkdocs
  5 +- Reduce memory use of TCP PI backend (closes #621)
  6 +- Fixed MODBUS_ERROR_RECOVERY_LINK not working on Windows (@embeddedmz)
  7 +- Replace Travis CI by GitHub CI
  8 +- Fix linker error for Windows (VCLinkerTool)
  9 +- Address check in single register / coil responses added (#463)
  10 +- Swap CRC bytes in request data but not at CRC computing (#397)
  11 +- Fix float endianness issue on big endian architecture
  12 +- Fix comment about EMBUNKEXC (closes #566)
  13 +- Fix network library detection on Haiku
  14 +- Fix typos (closes #620)
  15 +
1 16 libmodbus 3.1.7 (2022-01-09)
2 17 ============================
3 18  
... ...
configure.ac
... ... @@ -13,7 +13,7 @@
13 13 #
14 14 m4_define([libmodbus_version_major], [3])
15 15 m4_define([libmodbus_version_minor], [1])
16   -m4_define([libmodbus_version_micro], [7])
  16 +m4_define([libmodbus_version_micro], [8])
17 17  
18 18 m4_define([libmodbus_release_status],
19 19 [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot], [release])])
... ...