The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.json 34
META.yml 23
Makefile.PL 01
lib/Algorithm/C3.pm 11
5 files changed (This is a version diff) 612
@@ -1,5 +1,8 @@
 Revision history for Perl extension Algorithm-C3.
 
+0.10 - 2014-08-15
+    - declare minimum version of perl as 5.6 in metadata
+
 0.09 - 2014-03-01
     - convert to use ExtUtils::MakeMaker using distar
     - include repo and bugtracker metadata
@@ -5,7 +5,7 @@
       "Brandon L. Black <blblack@gmail.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.88, CPAN::Meta::Converter version 2.133380",
+   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.141520",
    "license" : [
       "perl_5"
    ],
@@ -33,7 +33,8 @@
       },
       "runtime" : {
          "requires" : {
-            "Carp" : "0.01"
+            "Carp" : "0.01",
+            "perl" : "5.006"
          }
       }
    },
@@ -49,5 +50,5 @@
          "web" : "http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/Algorithm-C3.git"
       }
    },
-   "version" : "0.09"
+   "version" : "0.10"
 }
@@ -8,7 +8,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.88, CPAN::Meta::Converter version 2.133380'
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.141520'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -20,7 +20,8 @@ no_index:
     - inc
 requires:
   Carp: '0.01'
+  perl: '5.006'
 resources:
   bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Algorithm-C3
   repository: git://git.shadowcat.co.uk/gitmo/Algorithm-C3.git
-version: '0.09'
+version: '0.10'
@@ -19,6 +19,7 @@ WriteMakefile(
     'Carp' => 0.01,
     ($mymeta_works ? () : (%BUILD_DEPS)),
   },
+  MIN_PERL_VERSION => 5.006,
   $mymeta_works ? (BUILD_REQUIRES => \%BUILD_DEPS) : (),
   ($mymeta && !$mymeta_works ? (NO_MYMETA => 1) : ()),
 
@@ -6,7 +6,7 @@ use warnings;
 
 use Carp 'confess';
 
-our $VERSION = '0.09';
+our $VERSION = '0.10';
 
 sub merge {
     my ($root, $parent_fetcher, $cache) = @_;