Code

Bumped version to 4.1.4; Updated ChangeLog collectd-4.1.4
authorFlorian Forster <octo@huhu.verplant.org>
Thu, 8 Nov 2007 09:49:54 +0000 (10:49 +0100)
committerFlorian Forster <octo@huhu.verplant.org>
Thu, 8 Nov 2007 09:49:54 +0000 (10:49 +0100)
ChangeLog
contrib/PerlLib/Collectd.pm
version-gen.sh

index a88680181b4a3375c8de00178a99f7adca002730..269520c8a2df1a8532139b7b14b49728603fe890 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-11-08, Version 4.1.4
+       * Build system: Improve detection of the rrd library, especially if
+         it's in a non-standard location.
+       * Build system: A bug when parsing the argument for
+         `--with-libnetsnmp' has been fixed.
+       * collectd: Implement `strerror_r' if the libc doesn't provide it.
+       * rrdtool plugin: Fix a bug in the shutdown sequence that might cause
+         a deadlock or delay when shutting down the daemon.
+       * snmp plugin: Fix a memory leak.
+
 2007-10-24, Version 4.1.3
        * collectd: A build issue under Solaris has been resolved by renaming
          data types.
index 17cbe6ab4cd0f79455b1f011493ad13d82616a63..8f6024de15a3c613d52e281ec84cdefb59cb347a 100644 (file)
@@ -44,7 +44,7 @@ our %EXPORT_TAGS = (
 
 Exporter::export_ok_tags('all');
 
-bootstrap Collectd "4.1.3";
+bootstrap Collectd "4.1.4";
 
 1;
 
index 66cd77743728e9651e74aad7d0d7a31b27c4f752..9ec71481cebac1b8bb97074dc11a59f012e5acc4 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-DEFAULT_VERSION="4.1.3.git"
+DEFAULT_VERSION="4.1.4.git"
 
 VERSION="$( git describe 2> /dev/null | sed -e 's/^collectd-//' )"