diff --git a/NEWS b/NEWS index aaa686a..3c9a4a0 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ -libmodbus 2.0.3 (2008-XX-XX) +libmodbus 2.0.3 (2009-03-22) ============================ +- Fix CRC error when a slave RTU send a response. + Thanks to Justin Carroll to have reported and tested my patch. +- Remove an assignment in compute_response_length() +- Remove duplicate counter in read_io_status() - Fix #274511 reported by 'Kylesch' Invalid error check in modbus_init_listen_tcp diff --git a/configure.ac b/configure.ac index 9645c7b..090c8d6 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT(libmodbus, 2.0.1, stephane.raimbault@gmail.com) +AC_INIT(libmodbus, 2.0.3, stephane.raimbault@gmail.com) AC_CONFIG_SRCDIR([modbus/modbus.c]) AM_INIT_AUTOMAKE AM_DISABLE_STATIC diff --git a/debian/changelog b/debian/changelog index c954bc1..18a2bef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +libmodbus (2.0.3-1) intrepid; urgency=low + + * New upstream release + + -- Stéphane Raimbault Sun, 22 Mar 2009 12:16:52 +0200 + +libmodbus (2.0.2-1) hardy; urgency=low + + * New upstream release + + -- Stephane Raimbault Sun, 10 Aug 2008 16:44:49 +0200 + libmodbus (2.0.1-1) hardy; urgency=low * New upstream release diff --git a/libmodbus.spec b/libmodbus.spec index dadf1d2..0074779 100644 --- a/libmodbus.spec +++ b/libmodbus.spec @@ -1,15 +1,15 @@ Summary: A Modbus library in C, which supports RTU communication over a serial line or a TCP link. Name: libmodbus -Version: 2.0.1 +Version: 2.0.3 Release: 1 License: LGPL V3+ Packager: Some random Internet user URL: https://launchpad.net/libmodbus/ Group: Applications/System -Provides: libmodbus=2.0.1 +Provides: libmodbus=2.0.3 Requires: ,/bin/sh -Source0: libmodbus-2.0.1.tar.bz2 +Source0: libmodbus-2.0.3.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: autoconf, automake @@ -50,7 +50,7 @@ rm -rf $RPM_BUILD_ROOT %attr(0755,root,root) %dir %{_includedir}/modbus/ %dir %{_libdir}/libmodbus.so.2 %dir %{_libdir}/libmodbus.so -%attr(0755,root,root) %{_libdir}/libmodbus.so.2.0.1 +%attr(0755,root,root) %{_libdir}/libmodbus.so.2.0.3 %attr(0755,root,root) %{_libdir}/libmodbus.la %attr(0644,root,root) %{_libdir}/pkgconfig/modbus.pc %attr(0644,root,root) %{_includedir}/modbus/modbus.h @@ -58,6 +58,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Mar 22 2009 Stéphane Raimbault - 2.0.3-1 +- new upstream release + +* Sun Aug 10 2008 Stéphane Raimbault - 2.0.2-1 +- new upstream release + * Fri Jul 2 2008 Stéphane Raimbault - 2.0.1-1 - new upstream release diff --git a/wscript b/wscript index 4b51c28..b3d660e 100644 --- a/wscript +++ b/wscript @@ -1,7 +1,7 @@ #! /usr/bin/env python # encoding: utf-8 -VERSION='2.0.1' +VERSION='2.0.3' APPNAME='libmodbus' # these variables are mandatory ('/' are converted automatically)