From: Vincent Pit Date: Tue, 6 Aug 2013 03:38:12 +0000 (-0300) Subject: Update to Devel::Cover 1.06 X-Git-Tag: v1.80.0~8 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTask-Devel-Cover-Recommended.git;a=commitdiff_plain;h=6898179c6c501ff8195750c90f27288b400b2649;hp=4cf41dd9ec8ce9bbf9756470799814d2b8698341 Update to Devel::Cover 1.06 --- diff --git a/Makefile.PL b/Makefile.PL index 7af0479..038fb3c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,7 +31,7 @@ my $RUN_PREREQS = { 'Pod::Coverage::CountParents' => '0', 'Storable' => '0', 'Template' => '2.00', - 'Devel::Cover' => '0.99', + 'Devel::Cover' => '1.06', }; my %META = ( diff --git a/lib/Task/Devel/Cover/Recommended.pm b/lib/Task/Devel/Cover/Recommended.pm index c1ee0c8..ba0ddb3 100644 --- a/lib/Task/Devel/Cover/Recommended.pm +++ b/lib/Task/Devel/Cover/Recommended.pm @@ -23,7 +23,7 @@ our $VERSION = 'v0.990.0'; =head1 DESCRIPTION -This task module lets you easily install L 0.99 and all its recommended dependencies. +This task module lets you easily install L 1.06 and all its recommended dependencies. =head1 DEPENDENCIES @@ -61,7 +61,7 @@ L =item * -L 0.99 +L 1.06 =item * diff --git a/t/01-deps.t b/t/01-deps.t index a0d38fe..c1a9a61 100644 --- a/t/01-deps.t +++ b/t/01-deps.t @@ -20,7 +20,7 @@ my $TESTED_PREREQS = { plan tests => keys(%$TESTED_PREREQS) + 1; my @tests = map [ $_ => $TESTED_PREREQS->{$_} ], keys %$TESTED_PREREQS; -push @tests, [ 'Devel::Cover' => '0.99' ]; +push @tests, [ 'Devel::Cover' => '1.06' ]; for my $test (@tests) { my ($module, $version) = @$test;