From 3c1fa6ef35e36a7f997ce8d993f6f645e7761af2 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 27 Jan 2008 16:19:23 +0100 Subject: [PATCH] Net::Oping: Bumped version to 1.01. Also added `use 5.006;' to Net/Oping.pm, because `use warnings;' is a Perl 5.6 feature. --- bindings/perl/Changes | 2 +- bindings/perl/META.yml | 2 +- bindings/perl/README | 2 +- bindings/perl/lib/Net/Oping.pm | 4 +++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/bindings/perl/Changes b/bindings/perl/Changes index ea4a612..3840e4e 100644 --- a/bindings/perl/Changes +++ b/bindings/perl/Changes @@ -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 cannot be found _before_ a Makefile is generated. This is done because `ExtUtils::MakeMaker' doesn't check whether libraries exist and this diff --git a/bindings/perl/META.yml b/bindings/perl/META.yml index 2aede20..3351afd 100644 --- a/bindings/perl/META.yml +++ b/bindings/perl/META.yml @@ -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: diff --git a/bindings/perl/README b/bindings/perl/README index d0af548..2714e36 100644 --- a/bindings/perl/README +++ b/bindings/perl/README @@ -1,4 +1,4 @@ -Net::Oping version 1.00 +Net::Oping version 1.01 ======================= ICMP latency measurement module using the oping library. diff --git a/bindings/perl/lib/Net/Oping.pm b/bindings/perl/lib/Net/Oping.pm index 2f01d21..aeeedf0 100644 --- a/bindings/perl/lib/Net/Oping.pm +++ b/bindings/perl/lib/Net/Oping.pm @@ -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); -- 2.11.0