summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2017-07-20 00:29:19 +0100
committerZefram <zefram@fysh.org>2017-07-20 00:29:19 +0100
commitaf94b3aceca5e13699699197deb87e197a62e3f8 (patch)
tree004e6e017cb80832d0d27ec0712a33293a00bfef
parent89e2d2f33c90af3dbbe7745b80ee60030264b01c (diff)
downloadperl-af94b3aceca5e13699699197deb87e197a62e3f8.tar.gz
correct declared min Perl version for Time-HiRes
Version 1.9727_03 of Time-HiRes introduced into Makefile.PL a declaration of the minimum required Perl version, but got it wrong. It declared a minimum of 5.8, but the module itself only demands 5.6, and it actually works at least as far back as 5.6.1. Change the declared minimum to 5.6.
-rw-r--r--dist/Time-HiRes/Changes4
-rw-r--r--dist/Time-HiRes/HiRes.pm2
-rw-r--r--dist/Time-HiRes/Makefile.PL2
-rw-r--r--pod/perldelta.pod4
4 files changed, 10 insertions, 2 deletions
diff --git a/dist/Time-HiRes/Changes b/dist/Time-HiRes/Changes
index 0084af6c84..b0dbed1460 100644
--- a/dist/Time-HiRes/Changes
+++ b/dist/Time-HiRes/Changes
@@ -1,5 +1,9 @@
Revision history for the Perl extension Time::HiRes.
+1.9743
+ - correct declared minimum Perl version (should be 5.6, was declared
+ as 5.8 since 1.9727_03)
+
1.9742 [2017-04-16]
- prefer 3-argument open: blead 1ae6ead9
- fix dist/Time-HiRes/t/*.t that assumed '.' in @INC: blead 465db51d
diff --git a/dist/Time-HiRes/HiRes.pm b/dist/Time-HiRes/HiRes.pm
index 386d30d935..fbdc2b4aca 100644
--- a/dist/Time-HiRes/HiRes.pm
+++ b/dist/Time-HiRes/HiRes.pm
@@ -28,7 +28,7 @@ our @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday time tv_interval
stat lstat utime
);
-our $VERSION = '1.9742';
+our $VERSION = '1.9743';
our $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/dist/Time-HiRes/Makefile.PL b/dist/Time-HiRes/Makefile.PL
index ca4d4dc420..08758b9e4a 100644
--- a/dist/Time-HiRes/Makefile.PL
+++ b/dist/Time-HiRes/Makefile.PL
@@ -936,7 +936,7 @@ sub doMakefile {
}
if ($ExtUtils::MakeMaker::VERSION >= 6.48) {
- push @makefileopts, (MIN_PERL_VERSION => '5.008',);
+ push @makefileopts, (MIN_PERL_VERSION => '5.006',);
}
if ($ExtUtils::MakeMaker::VERSION >= 6.31) {
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 6f829b5627..6befb01981 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -130,6 +130,10 @@ L<XXX> has been upgraded from version A.xx to B.yy.
L<ExtUtils::CBuilder> has been upgraded from version 0.280225 to 0.280227.
+=item *
+
+L<Time::HiRes> has been upgraded from version 1.9742 to 1.9743.
+
=back
=head2 Removed Modules and Pragmata