summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build.PL5
-rw-r--r--Changes4
-rw-r--r--META.json5
-rw-r--r--README.md1
-rw-r--r--lib/Carton.pm2
5 files changed, 9 insertions, 8 deletions
diff --git a/Build.PL b/Build.PL
index 8ad3066..9efea9b 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,7 +18,7 @@ my %module_build_args = (
"Tatsuhiko Miyagawa"
],
"dist_name" => "carton",
- "dist_version" => "v0.9.52",
+ "dist_version" => "v0.9.53",
"license" => "perl",
"module_name" => "carton",
"recommends" => {},
@@ -26,14 +26,13 @@ my %module_build_args = (
"requires" => {
"App::cpanminus" => "1.6915",
"CPAN::Meta" => "2.120921",
- "CPAN::Meta::Requirements" => "2.121",
"Exception::Class" => "1.32",
"ExtUtils::MakeMaker" => "6.59",
"Getopt::Long" => "2.39",
"JSON" => "2.53",
"Module::Build" => "0.38",
- "Module::CPANfile" => "0.9031",
"Module::Metadata" => "1.000003",
+ "Moo" => "1.002",
"Try::Tiny" => "0.09",
"local::lib" => "1.008",
"parent" => "0.223",
diff --git a/Changes b/Changes
index 1e17610..200200e 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v0.9.53 2013-06-01 23:54:53 JST
+ - use Moo
+ - refactored installer/downloader as Carton::Builder
+
v0.9.52 2013-06-01 17:01:51 JST
- carton exec doesn't need '--' before perl anymore #77
- remove even more unused code
diff --git a/META.json b/META.json
index b392566..e5449de 100644
--- a/META.json
+++ b/META.json
@@ -48,14 +48,13 @@
"requires" : {
"App::cpanminus" : "1.6915",
"CPAN::Meta" : "2.120921",
- "CPAN::Meta::Requirements" : "2.121",
"Exception::Class" : "1.32",
"ExtUtils::MakeMaker" : "6.59",
"Getopt::Long" : "2.39",
"JSON" : "2.53",
"Module::Build" : "0.38",
- "Module::CPANfile" : "0.9031",
"Module::Metadata" : "1.000003",
+ "Moo" : "1.002",
"Try::Tiny" : "0.09",
"local::lib" : "1.008",
"parent" : "0.223",
@@ -75,7 +74,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v0.9.52",
+ "version" : "v0.9.53",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/README.md b/README.md
index aad2d20..9806465 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,6 @@ Carton - Perl module dependency manager (aka Bundler for Perl)
> cat cpanfile
requires 'Plack', 0.9980;
requires 'Starman', 0.2000;
-
> carton install
> git add cpanfile carton.lock
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 407c1b0..43cc04e 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -3,7 +3,7 @@ package Carton;
use strict;
use warnings;
use 5.008_005;
-use version; our $VERSION = version->declare("v0.9.52");
+use version; our $VERSION = version->declare("v0.9.53");
use Config qw(%Config);
use Carton::Builder;