diff --git a/Changes b/Changes index 970a040..4ea47c4 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,11 @@ Revision history File::Slurp -9999.20_03 2018-10-04 (TRIAL) +9999.21 2018-10-08 - Unset $^W in a few strategic places to silence warnings when Test::Harness or ExtUtils::MakeMaker turn them on. (Thanks, Graham Knop). + - Got rid of a few MYMETA leftovers in the MANIFEST + - Add Git repository info to the Makefile + - Add a contributor's list for display on metacpan 9999.20_02 2018-10-04 (TRIAL) - Update TravisCI tests to show coverage. diff --git a/META.yml b/META.yml index 2e9769a..9ee4c76 100644 --- a/META.yml +++ b/META.yml @@ -20,7 +20,7 @@ build_requires: warnings: '0' configure_requires: ExtUtils::MakeMaker: '0' -dynamic_config: 1 +dynamic_config: 0 generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: @@ -31,6 +31,7 @@ no_index: directory: - t - inc + - xt requires: B: '0' Carp: '0' @@ -40,5 +41,11 @@ requires: POSIX: '0' strict: '0' warnings: '0' -version: 9999.20_03 +resources: + repository: https://github.com/perhunter/slurp.git +version: '9999.21' +x_contributors: + - 'Chase Whitener ' + - 'Graham Knop ' + - 'James E Keenan ' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/Makefile.PL b/Makefile.PL index f4593d7..78097ed 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -52,6 +52,23 @@ my %WriteMakefileArgs = ( 'AUTHOR' => 'Uri Guttman ', 'VERSION_FROM' => 'lib/File/Slurp.pm', 'ABSTRACT_FROM' => 'lib/File/Slurp.pm', + 'META_MERGE' => { + 'dynamic_config' => 0, + 'meta-spec' => {version => 2}, + 'no_index' => {directory => ['xt']}, + 'resources' => { + repository => { + type => 'git', + url => 'https://github.com/perhunter/slurp.git', + web => 'https://github.com/perhunter/slurp', + }, + }, + 'x_contributors' => [ + 'Chase Whitener ', + 'Graham Knop ', + 'James E Keenan ', + ], + }, "BUILD_REQUIRES" => \%BuildReqs, "CONFIGURE_REQUIRES" => \%ConfigReqs, "TEST_REQUIRES" => \%TestReqs, diff --git a/lib/File/Slurp.pm b/lib/File/Slurp.pm index 3cafa7d..26d14ed 100644 --- a/lib/File/Slurp.pm +++ b/lib/File/Slurp.pm @@ -3,7 +3,7 @@ package File::Slurp; use strict; use warnings ; -our $VERSION = '9999.20_03'; +our $VERSION = '9999.21'; $VERSION = eval $VERSION; use Carp ;