Bump version to 3.1.6
[libmodbus.git] / NEWS
blob9e68da7787db3c0e61960af8361792ce89004805
1 libmodbus 3.1.6 (2019-07-31)
2 ============================
4 - Fix awful typo in fix for VD-1301 vulnerability.
5   Thank you @karlp.
7 libmodbus 3.1.5 (2019-07-29)
8 ============================
10 - Fix URL
11 - Add appveyor.com config
12 - Update libmodbus.txt
13 - Change arg value from int to const uint16_t in modbus_write_register
14 - Mark raw_req argument as const in modbus_send_raw_request (closes #479)
15 - Add unit tests for VD-1301 and VD-1302 vulnerabilities
16 - Fix VD-1301 and VD-1302 vulnerabilities
17 - Create CODE_OF_CONDUCT.md
18 - modbus_mapping_t is now a named typedef (to allow forward declaration)
19 - Rename type as flags for consistency between functions
20 - Add missing SOCK_CLOEXEC flag on socket creation
21 - Remove wrong and harmful checks in configure.ac
22 - Oops fix OR on RS485 settings (1c5d969)
23 - Only set SER_RS485_ENABLED bit of existing RS485 settings
24 - Add .vscode/ to .gitignore
25 - Fix wrong function name
26 - Remove a duplicated semi-colon
27 - Fix a small typo in test message
28 - Fix modbus_reply for TCP when unit id == 0 (fixes #376)
29 - New functions to define the indication timeout (#95)
30 - Remove CYGWIN condition to provide bswap16 fallback (#383)
31 - typo fix
32 - Use builtin bswap16 of gcc 4.8 (#377)
33 - Handle out-of-memory conditions more gracefully
34 - [doc] Add entry points for accept/listen in libmodbus index
35 - Fix typo
36 - Refine issue template for Github
37 - Move WINVER definition before other includes (#350)
38 - Add new function modbus_get_slave()
39 - Fix LIBMODBUS_VERSION_HEX encoding (closes #345)
40 - tcp_modbus_accept mustn't close socket on error (closes #333)
42 libmodbus 3.1.4 (2016-05-28)
43 ============================
45 - C_PROG_RANLIB is rendered obsolete by LT_INIT
46 - Improve ifdef around bswap_16 for __CYGWIN__
47 - Improve Cygwin support. Thanks to StalderT.
48 - Another round of DRY in modbus_reply()
49 - Rename raw_rep to raw_rsp in unit-test-client
50 - Fix wrong function name in debug message
51 - Fix handling of invalid function code (closes #315)
52 - Add debug message on unknown function and new unit test
53 - DRY in modbus_reply by improving response_exception()
54 - Fix typo in 3053bd0adb
55 - CID 69145 - Argument cannot be negative in unit-test-server
56 - CID 69142 - Unchecked return value in unit-test-server
57 - Fix CID 69140 - Bad bit shift operation (coverity) in tests
58 - Rewrite and rename README as README.md in tests/
59 - Github's contributing and issue template files
60 - Fix small leak (64 bytes in TCP) in unit-test-client
61 - Add unit-tests.sh to tarball
62 - Add ./configure.scan to .gitignore
63 - Move setting of option inside the relevant conditional group
64 - Add links to new modbus_*_float_* functions in index
65 - Slight change to modbus_report_slave_id doc.
67 libmodbus 3.1.3 (2016-05-11)
68 ============================
70 - New bswap macros for Max OSX by Jakob Bysewski.
71 - Fix "wildcard address" in TCP IPv6 by Shoichi Sakane.
72 - Introduce offsets in modbus mappings with modbus_mapping_new_start_address.
73   Thanks to Michael Heimpold and Stéphane Raimbault.
74 - Fix address range in random-test-client.
75   Thanks to Martin Galvan.
76 - Add an option to disable tests compilation by Yegor Yefremov.
77 - Define MSG_DONTWAIT to MSG_NONBLOCK on AIX (#294).
78   Thanks to Fabrice Cantos.
79 - Fix building when byteswap.h is not defined by Tomasz Mon.
80 - Add some more macros for data manipulation and documentation.
81 - Remove duplicate install of modbus.h (closes #290).
82   Thanks to Daniel Sutcliffe.
83 - Move MIGRATION and README.md to dist_doc_DATA target.
84 - Change order of few functions in modbus RTU code.
85 - Add entries for modbus_rtu_[get|set]_delay in documentation index.
86 - Implemented runtime configurable RTS delay by Jimmy Bergström.
87 - Add an entry in libmodbus index page for modbus_rtu_set_custom_rts.
88 - Add support for user defined RTS toggle function by Jimmy
89   Bergström.
90 - Added ILLEGAL_DATA_ADDRESS tests for modbus_write_register[|s].
91   Thanks to Andrey Skvortsov.
92 - Update documentation of modbus_rtu_set_rts
93 - Fix rts signal switch time by Hiromasa Ihara.
94 - Improve new_rtu and set_slave documentation (related to #276).
95 - Fix late check of ctx in modbus_reply[|_exception] (closes #269).
96 - Wait the server for 1 second before running tests (help Travis).
97 - A libmodbus context isn't thread safe and won't be (closes #246).
98 - Fix buffer overflow in modbus_mask_write_register (#265).
99 - Minor adjustments to README about AsciiDoc.
100 - Export MODBUS_MAX_ADU_LENGTH and documentation (ref #241).
101 - Explicit check against Modbus broadcast address.
102 - Do not reply on broadcast requests (fixes #153). Thanks to Michael.
103 - Add Travis support.
104 - Run unit tests with standard: make check (closes #205, closes #238).
105   This patch has been developed by Andrey Skvortsov, Michael Heimpold
106   and Stéphane Raimbault.
107 - modbus_send_raw_request: limit request length (fixes #207).
108   Thanks to Hanno Neuer for spotting this security flaw.
109 - Add new contributors to AUTHORS
110 - Introduce SPDX license identifiers. Thanks to Michael Heimpold.
112 libmodbus 3.1.2 (2015-02-13)
113 ============================
115 If you still want to listen any addresses in your TCP IPv4 server, you must now
116 set the IP address to NULL in modbus_new_tcp before listening. Now,
117 modbus_tcp_listen only listen the IP address set in the Modbus context (see
118 documentation).
120 This release introduces API changes on modbus_get_byte_timeout,
121 modbus_get_response_timeout, modbus_set_byte_timeout,
122 modbus_set_response_timeout to ease writing of language bindings.
124 - Rewrite documentation building system
125 - Fix timeouts in unit tests
126 - Don't flush on illegal address errors in single write functions
127 - Fix compilation on compilers not supporting c99 mode.
128   Thanks to Michael Heimpold.
129 - Update license for the tests in Debian packaging (#221)
130 - Move check of device earlier to avoid a free call
131 - Unit test for baud rate check and error message.
132 - Fix crash modbus_new_rtu when baud is 0.
133   Thank you to Daniel Schürmann.
134 - Removed function prototype without implementation
135   Thank you Andrej Skvortzov.
136 - Switch test programs to a BSD license
137 - Fix remote buffer overflow vulnerability on write requests
138 - Avoid twice connect() in source code (closes #194)
139 - Fix compilation with MinGW (GCC 4.8.1) under Win7 (closes #163)
140   Thank you MarjanTomas and SwissKnife.
141 - Fix TCP IPv4 modbus_connect() on win32 (closes #100 and #165)
142   Thank you Petr Gladkiy and Marjan Tomas.
143 - Fix 24a05ebd3c0 - win32: init of modbus_tcp_pi_listen (#187)
144 - INADDR_* macros are defined in host byte order
145 - Filter of IP addresses in IPv4 server (closes #190)
146 - Allow to listen any hosts in IPv6 (closes #32)
147 - Define and public export of MODBUS_MAX_PDU_LENGTH (closes #167)
148 - Truncate data from response in report_slave_id to new max arg (closes #167)
149 - Fix response timeout modification on connect (closes #80)
150 - New API to set/get response and byte timeouts.
151   New unit tests and updated documentation.
152 - Export Modbus function codes supported by libmodbus
153 - Fix bandwidth-server-one (closes #152)
154 - Check debug flag in RTU code
155 - Remove warnings caused by shadowed 'index' variable.
156   Thanks to Åke Forslund.
157 - Use accept4 in TCP PI if available
158 - Add documentation for tcp[_pi]_accept (closes #31)
159 - Fix mistake in modbus_tcp_listen documentation
160 - Add documentation for modbus_tcp_pi_listen
161 - Fix for MinGW and Windows (#144, #169, #175, #180, #181, #187)
162   Thanks to Marjan Tomas.
163 - Many other fixes (#134, #157, #158, #183, #184) and improvements.
165 libmodbus 3.1.1 (2013-10-06)
166 ============================
168 More robust to exploits, more compliant and better handling of connect/close
169 sequences. Windows support still broken.
171 - New unit tests
172 - Fix remote buffer overflow vulnerability (closes #25, #105)
173 - Explain how to define response timeouts when many RTU slaves
174 - Fix receiving of incorrect queries in write_single and mask_write_register
175   Thanks to James Nutaro.
176 - Check return value of autoreconf.
177   Thanks to Lauri Nurmi
178 - Constant for broacast and test ordering
179 - Fix the fix of device string check
180 - Various changes to try to improve *broken* Windows support
181 - Try to fix MinGW compilation
182 - Portable use of bswap_32
183 - Improve support of MacOS X
184 - Fix socket value on init/close
185 - Returns -1 on invalid mode in modbus_rtu_set_rts
186 - Protect all public functions against invalid context
187 - Sleep for delay of response timeout before reconnect (closes #77).
188   Thanks to Karl Palsson.
189 - Baud rate until 4,000,000 (POSIX), 1,000,000 (Windows) (closes #93)
190 - New modbus_get|set_float_dcba to get|set float in inversed byte order
191 - Remove unsupported -Wtype-limits for GCC < 4.3.5 (closes #109)
192 - Enable out-of-source build. Thanks to Yegor Yefremov.
193 - Fix alignment problem on ARMv5 platform
194 - Improvement to Debian package. Thanks to Alexander Klauer.
195 - Improve support of VS 2005. Thanks to Petr Gladkiy.
196 - Add documentation for modbus_mask_write_register (closes #91).
197   Thanks to Martijn de Gouw.
198 - Avoid C99 declaration in win32 section code (closes #92).
199   Thanks to oldfaber and endrelovas.
200 - Add a windows scripting host configure file.
201   Thanks to oldfaber and Stéphane Raimbault.
202 - Fix typo in modbus_strerror documentation. Thanks to Mirko Rajkovaca.
203 - Rename reserved C++ keywords of modbus_mask_write_register.
204   Thanks Tobias Doerffel.
205 - Another quick workaround for deficient OS (closes #63)
206 - Add support for Mask Write Register
207 - Fix missing close on socket in random-test-server.
208   Thanks to Damian Zieliński.
209 - Use nonblocking sockets on Win32 and OS X/iOS too.
210   Thanks to Julian Raschke.
211 - Fix all compilations warnings spotted by new compilation flags
212 - Major update of build system
213 - Calculate RTS activation time by send length
214 - Dynamic memory allocation of device name (closes #11)
215 - Add unit tests for modbus_mapping_new
216 - Add Visual Studio 2008 project files by oldfaber
217 - Fix missing argument in synopsis section of modbus_rtu_set_serial_mode
218 - Fix wrong constant names to create version number
219 - More compilation fixes for Windows by oldfaber.
220 - Fix wrong constant names to create version number.
221   Thanks to Denis Davydov.
223 libmodbus 3.1.0 (2012-06-22)
224 ============================
226 Major changes to handle many slaves in RTU mode, non blocking connections and
227 RTS flow control.
229 - Fixes for Microsoft Visual C++ compiler
230 - Fixes for Windows. Thanks to oldfaber
231 - Return value of _modbus_tcp_pi_connect() on failure (closes #61)
232 - Avoid ioctl call on non-RS485 ports. Thanks to Michael Haberler
233 - Display node and service in PI and port in IPv4 at connection
234 - Return -1 on getaddrinfo error and print error in debug mode
235 - More robust way to establish the connection in non blocking mode
236 - TCP - Socket in non blocking mode by default. Thanks to Thomas Stalder
237 - Apply CLOEXEC flag for TCP protocol independent too (IPv6)
238 - New RTU receive() to ignore confirmation from other slaves (closes #18)
239 - Move RTU filtering in CRC check to avoid useless call to modbus_reply
240 - Unique transaction identifier by TCP connection
241 - Use accept4 with SOCK_CLOEXEC when available (Linux)
242 - Open fd and socket with the CLOEXEC flag when available
243 - Exception response on report slave ID wasn't detected (closes #27)
244 - Provides a way to disable the byte timeout (Alex Stapleton)
245 - Added slave ID check for response messages (Alex Stapleton)
246 - RTS flow control with modbus_rtu_set_rts and modbus_rtu_get_rts
247   functions by Torello Querci <tquerci@gmail.com> and Stéphane Raimbault.
249 libmodbus 3.0.4 (2012-05-08)
250 ============================
252 - autogen.sh creates symlinks instead of copies
253 - Add missing m4 directory (closes #103)
254 - Fix alignment problem on ARMv5 platform
255   Thanks to Alexander Dahl
256 - Remove useless test on error_recovery argument
257   Thanks to Carlos Tangerino
259 libmodbus 3.0.3 (2012-05-25)
260 ============================
262 - Fix another Visual C++ 2008/2010 deficiency (closes #53)
263 - Add -lsocket to compile on QNX
264 - Fix TCP PI init under Windows.
265   Thanks to oldfaber.
266 - Fix a missing free in random-test-client
267   Thanks again to Stefan Finzel.
268 - Fix OMG bug in modbus_mapping_free not freeing memory.
269   Thanks to Stefan Finzel for the bug report.
270 - Fix semicolon typo and unistd.h include under Windows.
271   Thanks to Andrew Kravchuk.
273 libmodbus 3.0.2 (2012-01-16)
274 ============================
276 - Update Debian package
277 - Documentation fixes and additions
278 - Add missing C++ macros in public headers.
279   Thanks to Bernhard Agthe.
280 - Protects modbus_mapping_free against NULL argument.
281   Thanks to Andrea Mattia
282 - Fix check on file doc/libmodbus.7 in acinclude.m4 (closes #28)
283 - Close file descriptor when the settings don't apply in RTU.
284   Original patch provided by Thomas Stalder.
285 - unit-test.h is now generated to avoid config.h dependency.
286 - Request for Windows Sockets specification version 2.2 instead of 2.0
287   Thanks to Pavel Mazniker for the report.
289 libmodbus 3.0.1 (2011-07-18)
290 ============================
292 - Avoid useless serial_mode integer when TIOCSRS485 isn't supported
293 - Fix compilation failure on Windows (RS485 support) by Tobias Doerffel
294   <tobias.doerffel@gmail.com>
295 - Properly check TIOCSRS485 define by Matthijs Kool
296 - Rename package to libmodbus5 to fix lintian warning
298 libmodbus 3.0.0 (2011-07-11)
299 ============================
301 - Revert libmodbus licence from LGPLv3 to LGPLv2.1 to avoid
302   incompatibility with GPLv2 program. This change has been approved
303   by Tobias Doerffel, Florian octo Forster and Hannu Vuolasaho.
304 - Enable RS485 support only when available
305 - Export modbus_set/get_serial_mode functions on all platforms
306 - API change for read/write multiple registers function:
307     * modbus_read_and_write_registers -> modbus_write_and_read_registers
308   The function name was confusing because the write operation is performed
309   before the read. Take care to swap the arguments in the migration process.
310 - Documentation of modbus_write_and_read_registers, modbus_mapping_new/free,
311   report_slave_id. modbus_get_byte_from_bits, modbus_set_bits_from_byte(s),
312   modbus_[gs]et_float, modbus_reply and modbus_reply_exception.
313 - Enhanced report slave ID
314 - New RPM spec file to package documentation and development files
316 libmodbus 2.9.4 (2011-06-05)
317 ============================
319 - IPv6 support
320   Make the TCP implementation "protocol independent" by Florian Forster
321   and Stéphane Raimbault.
322 - Fix compilation on Windows 7 (x64) with MinGW/MSYS and GCC 4.5
323   Reported by Patsy Kaye.
324 - Documentation of libmodbus functions with AsciiDoc (man and HTML) by Stéphane
325   Raimbault
326 - Avoid an iteration in flush function
327 - New functions to send and receive raw requests (modbus_send_raw_request,
328   modbus_receive_confirmation)
329 - Fix flush function of TCP backend on Windows
330 - API changes for server/slave:
331     * modbus_receive doesn't take socket/fd argument anymore
332     * new function modbus_set_socket to set socket/fd
333 - API changes for timeout functions:
334     * modbus_get_timeout_begin -> modbus_get_response_timeout
335     * modbus_set_timeout_begin -> modbus_set_response_timeout
336     * modbus_get_timeout_end -> modbus_get_byte_timeout
337     * modbus_set_timeout_end -> modbus_set_byte_timeout
338 - Fix longstanding limitation of server to wait forever
339 - New functions modbus_set/get_serial_mode by Manfred Gruber and Stéphane
340   Raimbault for RS485 communications
341 - Improved recovery mode (see modbus_set_error_recovery documentation) for
342   data link and protocol errors.
343 - Fix compilation issue with Microsoft Visual Studio 2008.
344   Reported by Allan Cornet.
346 libmodbus 2.9.3 (2011-01-14)
347 ============================
349 - Major rewriting of the message reading (no more timeouts on exception)
350   by Stéphane Raimbault
351 - New function to reply to an indication with an exception message
352   modbus_reply_exception()
353 - New function modbus_get_header_length(modbus_t *ctx)
354 - New functions to manipulate data:
355     * MODBUS_GET_INT32_FROM_INT16
356     * MODBUS_GET_INT16_FROM_INT8
357     * MODBUS_SET_INT16_TO_INT8
358 - Fix GH-2. Read/write were swapped in _FC_READ_AND_WRITE_REGISTERS
359 - Install an ignore handler for SIGPIPE on *BSD
360   Original patch by Jason Oster.
361 - Fix closing of Win32 socket.
362   Reported by Petr Parýzek.
363 - Fix unit identifier not copied by the TCP server.
364   Reported by Antti Manninen.
365 - Fix missing modbus_flush() in unit tests
366 - Fixes for OpenBSD by Barry Grumbine and Jason Oster
369 libmodbus 2.9.2 (2010-12-05)
370 ============================
372 - Win32 support by Tobias Doerffel
373 - Split source code around RTU and TCP (backends)
374 - Rename modbus_[listen|accept] to modbus_tcp_[listen|accept]
375 - Remove slave argument from modbus_new_rtu()
376 - Check received function code
377 - Fix segfault in bandwidth-server-many-up on inet_ntoa() call
378 - Fix unit test of report slave ID in RTU
379 - Fix GH-3. Remove inclusion of config.h in modbus.h
380 - Correctly detect if we are cross-compiling for win32 by Kirill Smelkov.
381 - Fix setting of the broadcast address
384 libmodbus 2.9.1 (2010-08-16)
385 ============================
387 - Brand new API (see MIGRATION notes)!
388 - Remove the internal function set_message_length_tcp
389 - Restore slave ID (server ID) argument in functions
390 - Error conventions of POSIX systems and error recover
391 - Parity setting is now a single char ('N', 'E' or 'O')
392 - Report slave ID server side
393 - OpenBSD support by Anibal Limón.
394 - New read and write registers function by Hannu Vuolasaho.
395 - Versioning infrastructure
396   Inspired by the Clutter project and the work done by Florian Forster.
397 - Fix the broadcast constant (255 -> 0)
398   Reported by David Olivari.
399 - Fix #463299 - New functions to define the timeouts of begin and end of trame
400   Original patch by Sisyph (eric-paul).
401 - Fix #591142 - Slave id check should be disabled in TCP connection
402   Reported by aladdinwu.
405 libmodbus 2.1.0 (2010-03-24)
406 ============================
408 - New API to read and write float values by Stéphane Raimbault and Florian
409   Forster.
410 - New API for slave server (see MIGRATION)
411 - New slave server able to handle multiple connections
412 - Slave only replies to broadcast queries or queries with its slave ID
413 - Improved Modbus protocol conformance
414 - modbus_param_t is smaller (2 int removed)
415 - Better error management and SIGPIPE signal is blocked
416 - Faster
417 - Fix #333455 - Cygwin IPTOS_LOWDELAY not supported on cygwin
418   Reported by Jeff Laughlin and Yishin Li.
419 - Fix #375926 - modbus.c:164: error: `MSG_DONTWAIT' undeclared
420   Reported and tested by Yishin Li.
421 - Fix #378981 - CRC error on RTU response doesn't return negative value
422   Reported by Henrik Munktell.
423 - Fix report slave ID request
424   Patch (bzr) provided by Paul Fertser.
425 - Fix #425604 - Conditional jump or move depends on uninitialised value(s)
426   Occurs on first occurence of slave timeout.
427   Reported by Henrik Munktell.
428 - Fix #457200 - FreeBSD support
429   Patch provided by Norbert Koch.
431 Other changes:
433 - The code is now published and developed on
434   http://github.com/stephane/libmodbus
435 - Waf support has been removed
438 libmodbus 2.0.3 (2009-03-22)
439 ============================
441 - Fix CRC error when a slave RTU send a response.
442   Thanks to Justin Carroll to have reported and tested my patch.
443 - Remove an assignment in compute_response_length()
444 - Remove duplicate counter in read_io_status()
445 - Fix #274511 reported by 'Kylesch'
446   Invalid error check in modbus_init_listen_tcp
449 libmodbus 2.0.2 (2008-08-10)
450 ============================
451 - Fix a bug reported by email by Davide Pippa
452   The function modbus_receive must check the number of values
453   indicated in the response accordingly to the query.
454 - Fix #241006 reported by Jesus Hernandez Tapia
455   modbus_check_response() crashes on an invalid exception code
456 - Reduce the number of function calls (read_reg_response and
457   preset_response have been removed)
458 - Add a new unit test for bad response
459 - Catch the timeout even if the length is equal to a exception trame
460 - Test only msg_length_computed on change
461 - Many comments and cleanups
464 libmodbus 2.0.1 (2008-07-02)
465 ============================
467 - Include libmodbus.spec in the tarball
468 - Fix #241006 reported by Jesus Hernandez Tapia
469   modbus_check_response() crashes on an invalid exception code
472 libmodbus 2.0.0 (2008-05-18)
473 ============================
475 - Slave API
476   https://blueprints.launchpad.net/libmodbus/+spec/slave-api
477 - No more glib dependency
478   https://blueprints.launchpad.net/libmodbus/+spec/glib-dependency
479 - Unit testing and many test programs
480 - Waf build support
481   https://blueprints.launchpad.net/libmodbus/+spec/waf-support
482 - MacOS X support by Matthew Butch
483   https://blueprints.launchpad.net/libmodbus/+spec/macosx-support
484 - Unit testing (unit-test-slave and unit-test-master)
485 - Port number is now defined at initialisation by Dirk Reusch
486 - Better memory management (uint8_t *data and packing of
487   modbus_param_t)
488 - Better error management
489 - Declare many static functions and const arrays
490 - Enhance an integer division
491 - The GNU licences LGPL and GPL are in version 3
492 - Debian and RPM packages (#224496)
493 - Many cleanups
494 - Fix #159443 reported by Stefan Bisanz
495   Index of incoming data in force multiple coils function
496 - Fix #161989 reported by Konstantinos Togias
497   Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
498   fit to modbus_param_t -> device char[11] var.
499 - Fix #188189 reported by Chris Hellyar
500   Compute_response_size() no entry for read_input_status()
501 - Fix #191039 reported by Todd Denniston
502   modbus.h is not installed at prefix.
503 - Fix #211460 reported by Todd Denniston
504   With TCP, automatic reconnect on error may not be desired.
505 - Fix #224485 reported by Todd Denniston
506   libmodbus does not link with c++ code.
507 - Fix #224496 reported by Todd Denniston
508   It is easier to install on rpm based systems with a spec file.
511 libmodbus 1.2.5 (2008-05-18)
512 ============================
514 - Fix #224485 reported by Todd Denniston
515   libmodbus does not link with c++ code.
518 libmodbus 1.2.4 (2008-03-14)
519 ============================
521 - Fix #191039 reported by Todd Denniston
522   modbus.h is not installed at prefix.
525 libmodbus 1.2.3 (2008-02-03)
526 ============================
528 - Fix #188189 reported by Chris Hellyar
529   Compute_response_size() no entry for read_input_status()
530 - Fix #181887 reported by Jesus Hernandez Tapia.
531   Slave address in build_request_packet_tcp() is hardcoded as 0xFF.
534 libmodbus 1.2.2 (2007-11-12)
535 ============================
537 - Fix #161989 reported by Konstantinos Togias
538   Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
539   fit to modbus_param_t -> device char[11] var.
540 - Structure is also bit better 'packed' to conserve memory (see the
541   trunk for a real enhancement).
544 libmodbus 1.2.1 (2007-11-02)
545 ============================
547 - Fix #159443 reported by Stefan Bisanz
548   Index of incoming data in force multiple coils function
549 - Deleted useless code in check_crc16()
550 - Untabify source code
551 - Changed author's email to Stéphane Raimbault
554 libmodbus 1.2.0 (2007-05-10)
555 ============================
557 - FIX Compilation GCC-4.0
558 - Project name in autogen.sh