From f5939cf740313daf966103fc3a769f103da7ab2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Raimbault?= Date: Wed, 17 Aug 2022 18:30:36 +0200 Subject: [PATCH] Bump version to 3.1.8 --- NEWS | 15 +++++++++++++++ configure.ac | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3f8a97dcd..ef1997be4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +libmodbus 3.1.8 (2022-08-17) +============================ + +- Major rewrite of documentation with Material for mkdocs +- Reduce memory use of TCP PI backend (closes #621) +- Fixed MODBUS_ERROR_RECOVERY_LINK not working on Windows (@embeddedmz) +- Replace Travis CI by GitHub CI +- Fix linker error for Windows (VCLinkerTool) +- Address check in single register / coil responses added (#463) +- Swap CRC bytes in request data but not at CRC computing (#397) +- Fix float endianness issue on big endian architecture +- Fix comment about EMBUNKEXC (closes #566) +- Fix network library detection on Haiku +- Fix typos (closes #620) + libmodbus 3.1.7 (2022-01-09) ============================ diff --git a/configure.ac b/configure.ac index ad26abd24..f170159dd 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # m4_define([libmodbus_version_major], [3]) m4_define([libmodbus_version_minor], [1]) -m4_define([libmodbus_version_micro], [7]) +m4_define([libmodbus_version_micro], [8]) m4_define([libmodbus_release_status], [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot], [release])])