Net::Oping: Bumped version to 1.01. Net-Oping-1.01
authorFlorian Forster <octo@verplant.org>
Sun, 27 Jan 2008 15:19:23 +0000 (16:19 +0100)
committerFlorian Forster <octo@verplant.org>
Sun, 27 Jan 2008 15:19:23 +0000 (16:19 +0100)
Also added `use 5.006;' to Net/Oping.pm, because `use warnings;' is a Perl 5.6
feature.

bindings/perl/Changes
bindings/perl/META.yml
bindings/perl/README
bindings/perl/lib/Net/Oping.pm

index ea4a612..3840e4e 100644 (file)
@@ -1,6 +1,6 @@
 Revision history for Perl extension Net::Oping.
 
-1.01  ...
+1.01  Sun Jan 27 16:08:03 2008
        - Have `Makefile.PL' exit if the header file <oping.h> cannot be found
          _before_ a Makefile is generated. This is done because
          `ExtUtils::MakeMaker' doesn't check whether libraries exist and this
index 2aede20..3351afd 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.00
+version:      1.01
 version_from: lib/Net/Oping.pm
 installdirs:  site
 requires:
index d0af548..2714e36 100644 (file)
@@ -1,4 +1,4 @@
-Net::Oping version 1.00
+Net::Oping version 1.01
 =======================
 
   ICMP latency measurement module using the oping library.
index 2f01d21..aeeedf0 100644 (file)
@@ -29,12 +29,14 @@ configuring the time of live (TTL) are not yet supported by this interface.
 
 =cut
 
+use 5.006;
+
 use strict;
 use warnings;
 
 use Carp (qw(cluck confess));
 
-our $VERSION = '1.00';
+our $VERSION = '1.01';
 
 require XSLoader;
 XSLoader::load ('Net::Oping', $VERSION);