bindings/perl: Bumped version to 1.21 and updated Changes.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 1 Oct 2009 12:33:02 +0000 (14:33 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Thu, 1 Oct 2009 12:54:48 +0000 (14:54 +0200)
bindings/perl/Changes
bindings/perl/META.yml
bindings/perl/lib/Net/Oping.pm

index 0795651..1f8e616 100644 (file)
@@ -1,5 +1,11 @@
 Revision history for Perl extension Net::Oping.
 
+1.21  Thu Oct  1 14:28:25 2009
+       - Fix an off-by-one error in `_ping_iterator_get_hostname' which caused
+         the trailing null-byte to be included in the strings that are the
+         keys of the hash returned by Net::Oping::ping. Thanks to Fredrik
+         Soderblom for reporting this issue and providing the patch.
+
 1.20  Sat Jul 18 14:57:32 2009
        - The `device' method has been added.
 
index a8704fc..74766ae 100644 (file)
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Net-Oping
-version:      1.20
+version:      1.21
 version_from: lib/Net/Oping.pm
 installdirs:  site
 requires:
index 47993dc..bc109dc 100644 (file)
@@ -61,7 +61,7 @@ use warnings;
 
 use Carp (qw(cluck confess));
 
-our $VERSION = '1.20';
+our $VERSION = '1.21';
 
 require XSLoader;
 XSLoader::load ('Net::Oping', $VERSION);