Code

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 ea4a6122211d1582de6c9ca193b765fc87944650..3840e4e78362675e083e15c797f220553c02b840 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 2aede20a9232b66c461e488af9e5ff04c9b90857..3351afd730f51121e75f9099678b75b05491b873 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 d0af5485073f686f47450af48bab9fb3fad40bb1..2714e36b25d299b2cd0818b8b264c462458c6768 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 2f01d21d45fdb96436763361cc4b54acca905436..aeeedf05306786e30e939e18e3f11477564dcc69 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);