The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 111
META.json 22
META.yml 22
Makefile.PL 11
README 11
dist.ini 11
lib/CPAN/Perl/Releases.pm 23
t/00-compile.t 23
8 files changed (This is a version diff) 1224
@@ -1,8 +1,18 @@
 ==================================================
-Changes from 2009-10-03 00:00:00 +0000 to present.
+Changes from 2009-10-21 00:00:00 +0000 to present.
 ==================================================
 
 -----------------------------------------
+version 1.96 at 2014-10-20 13:27:59 +0000
+-----------------------------------------
+
+  Change: 67510a440b9b5dfc9705e6e07a324ef8ee29ee67
+  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
+  Date : 2014-10-20 14:27:59 +0000
+
+    Updated for v5.21.5 
+
+-----------------------------------------
 version 1.94 at 2014-10-02 07:39:33 +0000
 -----------------------------------------
 
@@ -4,7 +4,7 @@
       "Chris Williams <chris@bingosnet.co.uk>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142060",
+   "generated_by" : "Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142690",
    "license" : [
       "perl_5"
    ],
@@ -54,6 +54,6 @@
          "web" : "https://github.com/bingos/cpan-perl-releases"
       }
    },
-   "version" : "1.94"
+   "version" : "1.96"
 }
 
@@ -10,7 +10,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142060'
+generated_by: 'Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142690'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -21,4 +21,4 @@ requires:
 resources:
   homepage: https://github.com/bingos/cpan-perl-releases
   repository: https://github.com/bingos/cpan-perl-releases.git
-version: '1.94'
+version: '1.96'
@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
     "IPC::Open3" => 0,
     "Test::More" => "0.47"
   },
-  "VERSION" => "1.94",
+  "VERSION" => "1.96",
   "test" => {
     "TESTS" => "t/*.t"
   }
@@ -3,7 +3,7 @@ NAME
     the tarballs
 
 VERSION
-    version 1.94
+    version 1.96
 
 SYNOPSIS
       use CPAN::Perl::Releases qw[perl_tarballs];
@@ -1,5 +1,5 @@
 name = CPAN-Perl-Releases
-version = 1.94
+version = 1.96
 author = Chris Williams <chris@bingosnet.co.uk>
 license = Perl_5
 copyright_holder = Chris Williams
@@ -1,5 +1,5 @@
 package CPAN::Perl::Releases;
-$CPAN::Perl::Releases::VERSION = '1.94';
+$CPAN::Perl::Releases::VERSION = '1.96';
 #ABSTRACT: Mapping Perl releases on CPAN to the location of the tarballs
 
 use strict;
@@ -154,6 +154,7 @@ our $data =
 "5.18.3-RC2" => { id => 'RJBS' },
 "5.18.3" => { id => 'RJBS' },
 "5.18.4" => { id => 'RJBS' },
+"5.21.5" => { id => 'ABIGAIL' },
 };
 
 sub perl_tarballs {
@@ -210,7 +211,7 @@ CPAN::Perl::Releases - Mapping Perl releases on CPAN to the location of the tarb
 
 =head1 VERSION
 
-version 1.94
+version 1.96
 
 =head1 SYNOPSIS
 
@@ -2,7 +2,7 @@ use 5.006;
 use strict;
 use warnings;
 
-# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.046
+# this test was generated with Dist::Zilla::Plugin::Test::Compile 2.047
 
 use Test::More  tests => 1 + ($ENV{AUTHOR_TESTING} ? 1 : 0);
 
@@ -45,6 +45,7 @@ for my $lib (@module_files)
 
 
 
-is(scalar(@warnings), 0, 'no warnings found') or diag 'got warnings: ', explain \@warnings if $ENV{AUTHOR_TESTING};
+is(scalar(@warnings), 0, 'no warnings found')
+  or diag 'got warnings: ', ( Test::More->can('explain') ? Test::More::explain(\@warnings) : join("\n", '', @warnings) ) if $ENV{AUTHOR_TESTING};