From: Florian Forster Date: Thu, 8 Nov 2007 09:49:54 +0000 (+0100) Subject: Bumped version to 4.1.4; Updated ChangeLog X-Git-Tag: collectd-4.1.4^0 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=6d17d79f77570f68314ab3c3f63720e361b6af58;p=collectd.git Bumped version to 4.1.4; Updated ChangeLog --- diff --git a/ChangeLog b/ChangeLog index a8868018..269520c8 100644 --- 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. diff --git a/contrib/PerlLib/Collectd.pm b/contrib/PerlLib/Collectd.pm index 17cbe6ab..8f6024de 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.3"; +bootstrap Collectd "4.1.4"; 1; diff --git a/version-gen.sh b/version-gen.sh index 66cd7774..9ec71481 100755 --- a/version-gen.sh +++ b/version-gen.sh @@ -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-//' )"