Commit 3da2d01916ef118aba30a1951d89e0ca0f90e2f7
1 parent
b4ef4c17
Bump version to 3.1.7
Showing
2 changed files
with
27 additions
and
1 deletions
NEWS
| 1 | +libmodbus 3.1.7 (2022-01-09) | ||
| 2 | +============================ | ||
| 3 | + | ||
| 4 | +- modbus_reply: fix copy & paste error in sanity check (fixes #614) | ||
| 5 | +- Add SECURITY.md (closes #613) | ||
| 6 | +- Fix typo in comment (closes #588) | ||
| 7 | +- Replace obsolete AC_PROG_CC_STDC by AC_PROG_CC | ||
| 8 | +- Fix position of CC flags in documentation (closes #599) | ||
| 9 | +- Remove duplicate ';' (closes #602) | ||
| 10 | +- Add the baud rate of 256k for Windows (closes #603) | ||
| 11 | +- cosmetic changes in man page standardizing itemization | ||
| 12 | +- Fix many typos | ||
| 13 | +- Replace .dir-locals.el (Emacs) by .editorconfig | ||
| 14 | +- Include the test LICENSE in tarball | ||
| 15 | +- Install the NEWS and AUTHORS files | ||
| 16 | +- Update README.md | ||
| 17 | +- docs: fix simple typo, reponse -> response | ||
| 18 | +- Add modbus_[get|set]_indication_timeout to doc build | ||
| 19 | +- Fix warning issues | ||
| 20 | +- Move malloc before starting unit tests | ||
| 21 | +- Fixed MODBUS_GET_* macros in case of negative values | ||
| 22 | +- SPDX: change LGPL-2.1+ to LGPL-2.1-or-later | ||
| 23 | + | ||
| 24 | +Thank you to @yegorich, @i-ky, @jobol, @timgates42, @anton-bondarev, Richard | ||
| 25 | +Ash, @stefannilsson, Marc Haber, @qqq89513 and @mhei. | ||
| 26 | + | ||
| 1 | libmodbus 3.1.6 (2019-07-31) | 27 | libmodbus 3.1.6 (2019-07-31) |
| 2 | ============================ | 28 | ============================ |
| 3 | 29 |
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], [6]) | 16 | +m4_define([libmodbus_version_micro], [7]) |
| 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])]) |