Skip to content

Commit

Permalink
Declare minimum Perl version
Browse files Browse the repository at this point in the history
Although `Perl::MinimumVersion` reports 5.8.5 as the minimum Perl
version, I chose 5.14 here because of 1561d01, which restricted the
Travis tests to this minimum version.
  • Loading branch information
Paul Cochrane committed Nov 9, 2016
1 parent bdd9125 commit c3f4b27
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion META.json
Expand Up @@ -38,7 +38,8 @@
"runtime" : {
"requires" : {
"Dist::Zilla" : "0",
"Path::Tiny" : "0"
"Path::Tiny" : "0",
"perl" : "5.0014"
}
},
"test" : {
Expand Down
3 changes: 2 additions & 1 deletion Makefile.PL
Expand Up @@ -2,7 +2,7 @@
use strict;
use warnings;


use 5.001400;

use ExtUtils::MakeMaker;

Expand All @@ -14,6 +14,7 @@ my %WriteMakefileArgs = (
},
"DISTNAME" => "Dist-Zilla-Plugin-GitHubREADME-Badge",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.001400",
"NAME" => "Dist::Zilla::Plugin::GitHubREADME::Badge",
"PREREQ_PM" => {
"Dist::Zilla" => 0,
Expand Down
1 change: 1 addition & 0 deletions cpanfile
@@ -1,3 +1,4 @@
requires 'perl', '5.0014';
requires 'Dist::Zilla';
requires 'Path::Tiny';

Expand Down

0 comments on commit c3f4b27

Please sign in to comment.