From: Vincent Pit Date: Sat, 4 Nov 2017 14:51:41 +0000 (+0100) Subject: Update to Devel::Cover 1.29 X-Git-Tag: v1.290.0~1 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTask-Devel-Cover-Recommended.git;a=commitdiff_plain;h=637290d30288f0c9e0a70ddefd238e5eade868db Update to Devel::Cover 1.29 --- diff --git a/Makefile.PL b/Makefile.PL index 8c5b2da..ee538f0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -21,20 +21,25 @@ my $BUILD_PREREQS = { }; my $RUN_PREREQS = { + 'B::Debug' => '0', 'Browser::Open' => '0', 'Capture::Tiny' => '0', 'Class::XSAccessor' => '0', 'Digest::MD5' => '0', - 'JSON::PP' => '0', + 'HTML::Entities' => '3.69', + 'HTML::Parser' => '0', + 'JSON::MaybeXS' => '1.003003', 'Moo' => '0', 'PPI::HTML' => '1.07', 'Parallel::Iterator' => '0', 'Pod::Coverage' => '0.06', 'Pod::Coverage::CountParents' => '0', + 'Sereal::Decoder' => '0', + 'Sereal::Encoder' => '0', 'Storable' => '0', 'Template' => '2.00', 'namespace::clean' => '0', - 'Devel::Cover' => '1.20', + 'Devel::Cover' => '1.29', }; my %META = ( diff --git a/lib/Task/Devel/Cover/Recommended.pm b/lib/Task/Devel/Cover/Recommended.pm index 68a51c8..e722a58 100644 --- a/lib/Task/Devel/Cover/Recommended.pm +++ b/lib/Task/Devel/Cover/Recommended.pm @@ -9,11 +9,11 @@ Task::Devel::Cover::Recommended - Install Devel::Cover and its recommended depen =head1 VERSION -Version v1.200.0 +Version v1.290.0 =cut -our $VERSION = 'v1.200.0'; +our $VERSION = 'v1.290.0'; =head1 SYNOPSIS @@ -23,7 +23,7 @@ our $VERSION = 'v1.200.0'; =head1 DESCRIPTION -This task module lets you easily install L 1.20 and all its recommended dependencies. +This task module lets you easily install L 1.29 and all its recommended dependencies. =head1 DEPENDENCIES @@ -57,7 +57,7 @@ L =item * -L 1.20 +L 1.29 =item * @@ -65,6 +65,10 @@ C 5.008002 =item * +L + +=item * + L =item * @@ -81,7 +85,15 @@ L =item * -L +L 3.69 + +=item * + +L + +=item * + +L 1.003003 =item * @@ -107,6 +119,14 @@ L =item * +L + +=item * + +L + +=item * + L =item * @@ -143,7 +163,7 @@ You can find documentation for this module with the perldoc command. =head1 COPYRIGHT & LICENSE -Copyright 2012,2013,2014,2015 Vincent Pit, all rights reserved. +Copyright 2012,2013,2014,2015,2016,2017 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 0a3f5b7..9940948 100644 --- a/t/01-deps.t +++ b/t/01-deps.t @@ -6,16 +6,21 @@ use warnings; use Test::More; my $TESTED_PREREQS = { + 'B::Debug' => '0', 'Browser::Open' => '0', 'Capture::Tiny' => '0', 'Class::XSAccessor' => '0', 'Digest::MD5' => '0', - 'JSON::PP' => '0', + 'HTML::Entities' => '3.69', + 'HTML::Parser' => '0', + 'JSON::MaybeXS' => '1.003003', 'Moo' => '0', 'PPI::HTML' => '1.07', 'Parallel::Iterator' => '0', 'Pod::Coverage' => '0.06', 'Pod::Coverage::CountParents' => '0', + 'Sereal::Decoder' => '0', + 'Sereal::Encoder' => '0', 'Storable' => '0', 'Template' => '2.00', 'namespace::clean' => '0', @@ -24,7 +29,7 @@ my $TESTED_PREREQS = { plan tests => keys(%$TESTED_PREREQS) + 1; my @tests = map [ $_ => $TESTED_PREREQS->{$_} ], keys %$TESTED_PREREQS; -push @tests, [ 'Devel::Cover' => '1.20' ]; +push @tests, [ 'Devel::Cover' => '1.29' ]; for my $test (@tests) { my ($module, $version) = @$test;