Skip to content

Commit

Permalink
Add some meta information to display contributors. Prep for real release
Browse files Browse the repository at this point in the history
  • Loading branch information
genio committed Oct 8, 2018
1 parent 845373a commit b633382
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
11 changes: 9 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -31,6 +31,7 @@ no_index:
directory:
- t
- inc
- xt
requires:
B: '0'
Carp: '0'
Expand All @@ -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 <[email protected]>'
- 'Graham Knop <[email protected]>'
- 'James E Keenan <[email protected]>'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
17 changes: 17 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,23 @@ my %WriteMakefileArgs = (
'AUTHOR' => 'Uri Guttman <[email protected]>',
'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 <[email protected]>',
'Graham Knop <[email protected]>',
'James E Keenan <[email protected]>',
],
},
"BUILD_REQUIRES" => \%BuildReqs,
"CONFIGURE_REQUIRES" => \%ConfigReqs,
"TEST_REQUIRES" => \%TestReqs,
Expand Down
2 changes: 1 addition & 1 deletion lib/File/Slurp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;
Expand Down

0 comments on commit b633382

Please sign in to comment.