From: Florian Forster Date: Fri, 28 Sep 2007 13:55:44 +0000 (+0200) Subject: Bumped version to 4.1.2; Updated ChangeLog. X-Git-Tag: collectd-4.1.2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=abb077ac3e686ba9f75fdf9b18ded340f88975b6;p=collectd.git Bumped version to 4.1.2; Updated ChangeLog. --- diff --git a/ChangeLog b/ChangeLog index 0940f17f..928cc8d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,13 @@ -yyyy-mm-dd, Version 4.1.2 +2007-09-28, Version 4.1.2 * apcups plugin: Fix reporting of the `load percent' data. + * wireless plugin: Correct the handling of cards returning signal and + noise quality as percentage. + * perl plugin: Fix a possible buffer overflow in get_module_name(). + * build system: Further improve the detection of libraries. * netlink plugin: Build issues under some older versions of the Linux includes (i. e. Debian Sarge) have been fixed. + * snmp plugin: Fix a potential segfault when a host times out. Add + support for the `timeticks' type. 2007-09-12, Version 4.1.1 * Build system: The detection of `libnetlink' has been improved. diff --git a/contrib/PerlLib/Collectd.pm b/contrib/PerlLib/Collectd.pm index f95f9c31..0c6c6c80 100644 --- a/contrib/PerlLib/Collectd.pm +++ b/contrib/PerlLib/Collectd.pm @@ -44,7 +44,7 @@ our %EXPORT_TAGS = ( Exporter::export_ok_tags('all'); -bootstrap Collectd "4.1.1"; +bootstrap Collectd "4.1.2"; 1; diff --git a/version-gen.sh b/version-gen.sh index df35b1d4..acae67bf 100755 --- a/version-gen.sh +++ b/version-gen.sh @@ -1,6 +1,6 @@ #!/bin/sh -DEFAULT_VERSION="4.1.1.git" +DEFAULT_VERSION="4.1.2.git" VERSION="$( git describe 2> /dev/null | sed -e 's/^collectd-//' )"