summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-05-15 12:21:54 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-05-15 12:21:54 -0700
commit1c484f0f1a664b1878aabd3e4528e1b521317536 (patch)
treee90f8d449db8086bc80b695e5d9a30274a501615
parentd6dcec98976f37d2395ec10b5e6948adea91e65a (diff)
downloadcarton-1c484f0f1a664b1878aabd3e4528e1b521317536.tar.gz
v1.0.21v1.0.21
-rw-r--r--Changes4
-rw-r--r--META.json7
-rw-r--r--Makefile.PL4
-rw-r--r--lib/Carton.pm2
4 files changed, 12 insertions, 5 deletions
diff --git a/Changes b/Changes
index 173e629..700f304 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.21 2015-05-15 12:21:47 PDT
+ - Changed Module::Reader dependency to requires for now, since it will be required
+ on the runtime by the fatpacked carton.
+
v1.0.20 2015-05-08 16:20:37 PDT
- INCOMPATIBLE: Disable fatpack generation in carton bundle by default.
Use the new standalone command carton fatpack, to generate vendor/bin/carton
diff --git a/META.json b/META.json
index 667757e..614fef4 100644
--- a/META.json
+++ b/META.json
@@ -42,8 +42,7 @@
"runtime" : {
"recommends" : {
"App::FatPacker" : "0.009018",
- "File::pushd" : "0",
- "Module::Reader" : "0.002"
+ "File::pushd" : "0"
},
"requires" : {
"App::cpanminus" : "1.703",
@@ -55,6 +54,7 @@
"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 +74,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.20",
+ "version" : "v1.0.21",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
@@ -86,6 +86,7 @@
"NAKAGAWA Masaki <masaki.nakagawa@gmail.com>",
"Olaf Alders <olaf@wundersolutions.com>",
"Pedro Figueiredo <me@pedrofigueiredo.org>",
+ "Peter Oliver <git@mavit.org.uk>",
"shiba_yu36 <shibayu36@gmail.com>",
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>",
"Tatsuhiko Miyagawa <miyagawa@gmail.com>",
diff --git a/Makefile.PL b/Makefile.PL
index c86f079..fda5390 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -30,11 +30,12 @@ my %WriteMakefileArgs = (
"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.20",
+ "VERSION" => "v1.0.21",
"test" => {
"TESTS" => "t/*.t"
}
@@ -52,6 +53,7 @@ my %FallbackPrereqs = (
"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 fc02149..7546c77 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.20");
+use version; our $VERSION = version->declare("v1.0.21");
1;
__END__