diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-06-11 16:38:00 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2015-06-11 17:59:21 +0100 |
commit | 9716828a5efa3dfaa833945494a045a5c3f711a6 (patch) | |
tree | 4f7d7ae135f7c6209e8754572951b70eede36126 /cpan/Parse-CPAN-Meta/lib/Parse/CPAN | |
parent | 181e5cbaddfed0068a152bd22980ceb987010260 (diff) | |
download | perl-9716828a5efa3dfaa833945494a045a5c3f711a6.tar.gz |
Update Parse-CPAN-Meta to CPAN release 1.4417
[DELTA]
1.4417 2015-06-09 16:19:41-06:00 America/Denver
- No changes from 1.4416
1.4416 2015-05-19 11:11:47-04:00 America/New_York (TRIAL RELEASE)
[FIXED]
- Minimum Perl was inadvertently set to v5.10.0. Now back to v5.8.1.
1.4415 2015-04-28 11:29:52-04:00 America/New_York (TRIAL RELEASE)
[TESTS]
- Outputs the version of backends used
[META]
- Updated repo metadata and boilerplate files
- Pointed issue tracker to the Perl-Toolchain-Gang Github repo
Diffstat (limited to 'cpan/Parse-CPAN-Meta/lib/Parse/CPAN')
-rw-r--r-- | cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm b/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm index 7888d1c3cb..77a0764772 100644 --- a/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm +++ b/cpan/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm @@ -2,7 +2,8 @@ use 5.008001; use strict; package Parse::CPAN::Meta; # ABSTRACT: Parse META.yml and META.json CPAN metadata files -our $VERSION = '1.4414'; # VERSION + +our $VERSION = '1.4417'; use Exporter; use Carp 'croak'; @@ -110,12 +111,12 @@ sub _can_load { # Kept for backwards compatibility only # Create an object from a file -sub LoadFile ($) { +sub LoadFile ($) { ## no critic return Load(_slurp(shift)); } # Parse a document from a string. -sub Load ($) { +sub Load ($) { ## no critic require CPAN::Meta::YAML; my $object = eval { CPAN::Meta::YAML::Load(shift) }; croak $@ if $@; @@ -136,7 +137,7 @@ Parse::CPAN::Meta - Parse META.yml and META.json CPAN metadata files =head1 VERSION -version 1.4414 +version 1.4417 =head1 SYNOPSIS @@ -283,7 +284,7 @@ will be thrown. =head2 Bugs / Feature Requests Please report any bugs or feature requests through the issue tracker -at L<http://rt.cpan.org/Public/Dist/Display.html?Name=Parse-CPAN-Meta>. +at L<https://github.com/Perl-Toolchain-Gang/Parse-CPAN-Meta/issues>. You will be notified automatically of any progress on your issue. =head2 Source Code @@ -311,6 +312,8 @@ David Golden <dagolden@cpan.org> =head1 CONTRIBUTORS +=for stopwords Graham Knop Joshua ben Jore Karen Etheridge Neil Bowers Ricardo Signes Steffen Mueller + =over 4 =item * @@ -323,6 +326,10 @@ Joshua ben Jore <jjore@cpan.org> =item * +Karen Etheridge <ether@cpan.org> + +=item * + Neil Bowers <neil@bowers.com> =item * @@ -337,7 +344,7 @@ Steffen Mueller <smueller@cpan.org> =head1 COPYRIGHT AND LICENSE -This software is copyright (c) 2014 by Adam Kennedy and Contributors. +This software is copyright (c) 2015 by Adam Kennedy and Contributors. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. |