summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-08-10 18:00:45 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-08-10 18:00:45 -0700
commit6c3e161851a8bace5ed3bb9cb100523ead547d00 (patch)
tree20bfbb754359cd54a48bd70dbd305ae3695c8c59
parenta98f10f1b4ff6a23c97aa35de9342bd095e19c1d (diff)
downloadcarton-6c3e161851a8bace5ed3bb9cb100523ead547d00.tar.gz
v1.0.6v1.0.6
-rw-r--r--Build.PL5
-rw-r--r--Changes4
-rw-r--r--META.json6
-rw-r--r--lib/Carton.pm2
4 files changed, 13 insertions, 4 deletions
diff --git a/Build.PL b/Build.PL
index 6f6150b..0b643db 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,23 +18,26 @@ my %module_build_args = (
"Tatsuhiko Miyagawa"
],
"dist_name" => "Carton",
- "dist_version" => "v1.0.5",
+ "dist_version" => "v1.0.6",
"license" => "perl",
"module_name" => "Carton",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
+ "App::FatPacker" => "0.009018",
"App::cpanminus" => "1.694",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Exception::Class" => "1.32",
"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",
"Moo" => "1.002",
"Path::Tiny" => "0.022",
"Try::Tiny" => "0.09",
diff --git a/Changes b/Changes
index dfdee23..909661a 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.6 2013-08-10 17:59:51 PDT
+ - Added upgrading documentation (carton help upgrading)
+ - Experimental support for fatpacked carton executable in vendor/bin in bundle
+
v1.0.5 2013-08-08 12:50:39 PDT
- Bump cpanm for version extraction #126
- Fix doc about --cached (shibayu36)
diff --git a/META.json b/META.json
index cdf4b76..3994c1a 100644
--- a/META.json
+++ b/META.json
@@ -38,7 +38,6 @@
"develop" : {
"requires" : {
"Capture::Tiny" : "0",
- "File::pushd" : "0",
"Test::More" : "0.9",
"Test::Pod" : "1.41",
"Test::Requires" : "0"
@@ -46,17 +45,20 @@
},
"runtime" : {
"requires" : {
+ "App::FatPacker" : "0.009018",
"App::cpanminus" : "1.694",
"CPAN::Meta" : "2.120921",
"CPAN::Meta::Requirements" : "2.121",
"Exception::Class" : "1.32",
"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",
"Moo" : "1.002",
"Path::Tiny" : "0.022",
"Try::Tiny" : "0.09",
@@ -78,7 +80,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v1.0.5",
+ "version" : "v1.0.6",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 4cd23ad..8ccb4f5 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.5");
+use version; our $VERSION = version->declare("v1.0.6");
1;
__END__