summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--META.json4
-rw-r--r--Makefile.PL7
-rw-r--r--lib/Carton.pm2
4 files changed, 8 insertions, 9 deletions
diff --git a/Changes b/Changes
index 7cb92c3..2bb6c97 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.19 2015-05-01 17:48:06 PDT
+ - Remove Module::Build and MakeMaker from prerequisite since cpanm will
+ install them as required
+
v1.0.18 2015-04-29 13:46:21 PDT
- Sort 02packages case insensitive, like PAUSE
diff --git a/META.json b/META.json
index 4a50d5b..ae9aeb3 100644
--- a/META.json
+++ b/META.json
@@ -50,10 +50,8 @@
"CPAN::Meta" : "2.120921",
"CPAN::Meta::Requirements" : "2.121",
"Class::Tiny" : "1.001",
- "ExtUtils::MakeMaker" : "6.64",
"Getopt::Long" : "2.39",
"JSON" : "2.53",
- "Module::Build" : "0.4004",
"Module::CPANfile" : "0.9031",
"Module::CoreList" : "0",
"Module::Metadata" : "1.000003",
@@ -76,7 +74,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.18",
+ "version" : "v1.0.19",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index 50d68b4..ae706c4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,10 +25,8 @@ my %WriteMakefileArgs = (
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Class::Tiny" => "1.001",
- "ExtUtils::MakeMaker" => "6.64",
"Getopt::Long" => "2.39",
"JSON" => "2.53",
- "Module::Build" => "0.4004",
"Module::CPANfile" => "0.9031",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
@@ -36,7 +34,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.18",
+ "VERSION" => "v1.0.19",
"test" => {
"TESTS" => "t/*.t"
}
@@ -48,10 +46,9 @@ my %FallbackPrereqs = (
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Class::Tiny" => "1.001",
- "ExtUtils::MakeMaker" => "6.64",
+ "ExtUtils::MakeMaker" => 0,
"Getopt::Long" => "2.39",
"JSON" => "2.53",
- "Module::Build" => "0.4004",
"Module::CPANfile" => "0.9031",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 997946d..21b9124 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -1,7 +1,7 @@
package Carton;
use strict;
use 5.008_005;
-use version; our $VERSION = version->declare("v1.0.18");
+use version; our $VERSION = version->declare("v1.0.19");
1;
__END__