Commit 99b4e417e59d0aa5868741a494bb9455ad0cd25c

Authored by Stéphane Raimbault
1 parent 369c055e

Updated NEWS and package files for the 2.0.3 release.

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