Also added `use 5.006;' to Net/Oping.pm, because `use warnings;' is a Perl 5.6
feature.
 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
 
 # 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:
 
-Net::Oping version 1.00
+Net::Oping version 1.01
 =======================
 
   ICMP latency measurement module using the oping library.
 
 
 =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);