]> git.vpit.fr Git - perl/modules/Task-Devel-Cover-Recommended.git/commitdiff
Update to Devel::Cover 1.29
authorVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 14:51:41 +0000 (15:51 +0100)
committerVincent Pit <perl@profvince.com>
Sat, 4 Nov 2017 14:51:41 +0000 (15:51 +0100)
Makefile.PL
lib/Task/Devel/Cover/Recommended.pm
t/01-deps.t

index 8c5b2dad3bdbd9693a4fcb4182542fa1349b7ec1..ee538f04663b973a5739652a8992147b966a3ad3 100644 (file)
@@ -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 = (
index 68a51c874d90378d17a4640a256f53e7c4095065..e722a58877d603f948d6516490afb6e74bd854af 100644 (file)
@@ -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<Devel::Cover> 1.20 and all its recommended dependencies.
+This task module lets you easily install L<Devel::Cover> 1.29 and all its recommended dependencies.
 
 =head1 DEPENDENCIES
 
@@ -57,7 +57,7 @@ L<Test::More>
 
 =item *
 
-L<Devel::Cover> 1.20
+L<Devel::Cover> 1.29
 
 =item *
 
@@ -65,6 +65,10 @@ C<perl> 5.008002
 
 =item *
 
+L<B::Debug>
+
+=item *
+
 L<Browser::Open>
 
 =item *
@@ -81,7 +85,15 @@ L<Digest::MD5>
 
 =item *
 
-L<JSON::PP>
+L<HTML::Entities> 3.69
+
+=item *
+
+L<HTML::Parser>
+
+=item *
+
+L<JSON::MaybeXS> 1.003003
 
 =item *
 
@@ -107,6 +119,14 @@ L<Pod::Coverage::CountParents>
 
 =item *
 
+L<Sereal::Decoder>
+
+=item *
+
+L<Sereal::Encoder>
+
+=item *
+
 L<Storable>
 
 =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.
index 0a3f5b77b961a6b05b753508974a0899663571e7..9940948b10aee00b4487cfe03c61a9bcceb74494 100644 (file)
@@ -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;