summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-06-02 12:38:26 +0900
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-06-02 12:38:26 +0900
commitca8962860787c63a090f5bad28bf41a1df719f25 (patch)
treeabd148ee2526b5031707f4de689d2ec422e4fd70
parente6a8bf685ddb069b79309955b667e93c9bbb5776 (diff)
downloadcarton-ca8962860787c63a090f5bad28bf41a1df719f25.tar.gz
v0.9.54v0.9.54
-rw-r--r--Build.PL2
-rw-r--r--Changes5
-rw-r--r--META.json2
-rw-r--r--lib/Carton.pm2
4 files changed, 8 insertions, 3 deletions
diff --git a/Build.PL b/Build.PL
index 9efea9b..054b003 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,7 +18,7 @@ my %module_build_args = (
"Tatsuhiko Miyagawa"
],
"dist_name" => "carton",
- "dist_version" => "v0.9.53",
+ "dist_version" => "v0.9.54",
"license" => "perl",
"module_name" => "carton",
"recommends" => {},
diff --git a/Changes b/Changes
index 200200e..8c2a169 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,11 @@ Revision history for carton
{{$NEXT}}
+v0.9.54 2013-06-02 12:38:20 JST
+ - Install develop phase dependencies by default with carton install
+ - carton exec now doesn't set PERL5OPT with lib::core::only, so as not to mess with
+ the subprocess and site_perl modules (#60, #70, #82)
+
v0.9.53 2013-06-01 23:54:53 JST
- use Moo
- refactored installer/downloader as Carton::Builder
diff --git a/META.json b/META.json
index e5449de..db7f797 100644
--- a/META.json
+++ b/META.json
@@ -74,7 +74,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v0.9.53",
+ "version" : "v0.9.54",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 2717545..a7c43f3 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("v0.9.53");
+use version; our $VERSION = version->declare("v0.9.54");
1;
__END__