Code

Bumped version to 4.1.2; Updated ChangeLog. collectd-4.1.2
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 28 Sep 2007 13:55:44 +0000 (15:55 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 28 Sep 2007 13:55:44 +0000 (15:55 +0200)
ChangeLog
contrib/PerlLib/Collectd.pm
version-gen.sh

index 0940f17f7d8c7cf19dd92bc4abe0814b78f5472e..928cc8d0d106f81e2b01fbe95639170d930bc42c 100644 (file)
--- 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.
index f95f9c31ccf75d35abe65202e5bf48abfd6faad8..0c6c6c80e61fc2d18013e83a80ab9635042a90ff 100644 (file)
@@ -44,7 +44,7 @@ our %EXPORT_TAGS = (
 
 Exporter::export_ok_tags('all');
 
-bootstrap Collectd "4.1.1";
+bootstrap Collectd "4.1.2";
 
 1;
 
index df35b1d48c0366fed55835b517f626cc131bd940..acae67bfd2e81202f5ebc8285d86581649dc51d5 100755 (executable)
@@ -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-//' )"