summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--META.json10
-rw-r--r--Makefile.PL8
-rw-r--r--lib/Carton.pm2
4 files changed, 12 insertions, 12 deletions
diff --git a/Changes b/Changes
index 80e45b6..6958ad8 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.15 2015-04-20 11:13:32 CEST
+ - downgrade some dependencies for fatpack-related tools to recommends
+ (probably ship it as a separate distribution in the future)
+
v1.0.14 2015-04-20 00:07:26 CEST
- same as v1.0.14
diff --git a/META.json b/META.json
index 7a9d4d6..f70d37f 100644
--- a/META.json
+++ b/META.json
@@ -40,21 +40,23 @@
}
},
"runtime" : {
- "requires" : {
+ "recommends" : {
"App::FatPacker" : "0.009018",
+ "File::pushd" : "0",
+ "Module::Reader" : "0.002"
+ },
+ "requires" : {
"App::cpanminus" : "1.703",
"CPAN::Meta" : "2.120921",
"CPAN::Meta::Requirements" : "2.121",
"Class::Tiny" : "1.001",
"ExtUtils::MakeMaker" : "6.64",
- "File::pushd" : "0",
"Getopt::Long" : "2.39",
"JSON" : "2.53",
"Module::Build" : "0.4004",
"Module::CPANfile" : "0.9031",
"Module::CoreList" : "0",
"Module::Metadata" : "1.000003",
- "Module::Reader" : "0.002",
"Path::Tiny" : "0.033",
"Try::Tiny" : "0.09",
"parent" : "0.223",
@@ -74,7 +76,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.14",
+ "version" : "v1.0.15",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index bc4ae03..8baf516 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -21,25 +21,22 @@ my %WriteMakefileArgs = (
"MIN_PERL_VERSION" => "5.008005",
"NAME" => "Carton",
"PREREQ_PM" => {
- "App::FatPacker" => "0.009018",
"App::cpanminus" => "1.703",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Class::Tiny" => "1.001",
"ExtUtils::MakeMaker" => "6.64",
- "File::pushd" => 0,
"Getopt::Long" => "2.39",
"JSON" => "2.53",
"Module::Build" => "0.4004",
"Module::CPANfile" => "0.9031",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
- "Module::Reader" => "0.002",
"Path::Tiny" => "0.033",
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.14",
+ "VERSION" => "v1.0.15",
"test" => {
"TESTS" => "t/*.t"
}
@@ -47,20 +44,17 @@ my %WriteMakefileArgs = (
my %FallbackPrereqs = (
- "App::FatPacker" => "0.009018",
"App::cpanminus" => "1.703",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Class::Tiny" => "1.001",
"ExtUtils::MakeMaker" => "6.64",
- "File::pushd" => 0,
"Getopt::Long" => "2.39",
"JSON" => "2.53",
"Module::Build" => "0.4004",
"Module::CPANfile" => "0.9031",
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
- "Module::Reader" => "0.002",
"Path::Tiny" => "0.033",
"Try::Tiny" => "0.09",
"parent" => "0.223",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 0e6eb53..0dd3aa3 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.14");
+use version; our $VERSION = version->declare("v1.0.15");
1;
__END__