From: Vincent Pit Date: Wed, 30 Jan 2013 17:22:52 +0000 (-0200) Subject: Update to Devel::Cover 0.99 X-Git-Tag: v0.990.0~1 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTask-Devel-Cover-Recommended.git;a=commitdiff_plain;h=21368a6ba27aecd2e0945781247b376876ee81b6 Update to Devel::Cover 0.99 --- diff --git a/Makefile.PL b/Makefile.PL index 12c0787..7af0479 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.96', + 'Devel::Cover' => '0.99', }; my %META = ( diff --git a/lib/Task/Devel/Cover/Recommended.pm b/lib/Task/Devel/Cover/Recommended.pm index 8efc3bc..4c7242f 100644 --- a/lib/Task/Devel/Cover/Recommended.pm +++ b/lib/Task/Devel/Cover/Recommended.pm @@ -23,7 +23,7 @@ our $VERSION = 'v0.940.0'; =head1 DESCRIPTION -This task module lets you easily install L 0.96 and all its recommended dependencies. +This task module lets you easily install L 0.99 and all its recommended dependencies. =head1 DEPENDENCIES @@ -61,7 +61,7 @@ L =item * -L 0.96 +L 0.99 =item * @@ -131,7 +131,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2012 Vincent Pit, all rights reserved. +Copyright 2012,2013 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/t/01-deps.t b/t/01-deps.t index a6ad33e..a0d38fe 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.96' ]; +push @tests, [ 'Devel::Cover' => '0.99' ]; for my $test (@tests) { my ($module, $version) = @$test;