summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-04-19 19:38:50 +0200
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-04-19 19:38:50 +0200
commit76c4c3c2d4989b8d07c0d5c734806e08f34d3936 (patch)
treef7ff0ec34c70e7308162551258d0e7bd98d2af04
parent675e23024b461da0795684226fc7d00cbeeac42d (diff)
downloadcarton-76c4c3c2d4989b8d07c0d5c734806e08f34d3936.tar.gz
v1.0.13v1.0.13
-rw-r--r--Changes6
-rw-r--r--META.json7
-rw-r--r--Makefile.PL8
-rw-r--r--lib/Carton.pm2
4 files changed, 13 insertions, 10 deletions
diff --git a/Changes b/Changes
index df49623..3f8a4a6 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,12 @@ Revision history for carton
{{$NEXT}}
+v1.0.13 2015-04-19 19:38:42 CEST
+ - require cpanm 1.7030 for better cpanfile support
+ - switch to MakeMaker
+ - remove Exception::Class and Moo in favor of Class::Tiny
+ - add an ability to set generator in Carton::Index for Carmel use
+
v1.0.12 2013-09-24 20:03:47 JST
- up Path::Tiny
- Add --no-fatpack to carton bundle #140
diff --git a/META.json b/META.json
index 83c7736..9db6d68 100644
--- a/META.json
+++ b/META.json
@@ -45,7 +45,7 @@
"App::cpanminus" : "1.703",
"CPAN::Meta" : "2.120921",
"CPAN::Meta::Requirements" : "2.121",
- "Exception::Class" : "1.32",
+ "Class::Tiny" : "1.001",
"ExtUtils::MakeMaker" : "6.64",
"File::pushd" : "0",
"Getopt::Long" : "2.39",
@@ -55,7 +55,6 @@
"Module::CoreList" : "0",
"Module::Metadata" : "1.000003",
"Module::Reader" : "0.002",
- "Moo" : "1.002",
"Path::Tiny" : "0.033",
"Try::Tiny" : "0.09",
"parent" : "0.223",
@@ -63,7 +62,7 @@
}
}
},
- "release_status" : "stable",
+ "release_status" : "testing",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/perl-carton/carton/issues"
@@ -75,7 +74,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.12",
+ "version" : "v1.0.13",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index 84e64c8..247b1e9 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ my %WriteMakefileArgs = (
"App::cpanminus" => "1.703",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
- "Exception::Class" => "1.32",
+ "Class::Tiny" => "1.001",
"ExtUtils::MakeMaker" => "6.64",
"File::pushd" => 0,
"Getopt::Long" => "2.39",
@@ -35,12 +35,11 @@ my %WriteMakefileArgs = (
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
"Module::Reader" => "0.002",
- "Moo" => "1.002",
"Path::Tiny" => "0.033",
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.12",
+ "VERSION" => "v1.0.13",
"test" => {
"TESTS" => "t/*.t"
}
@@ -52,7 +51,7 @@ my %FallbackPrereqs = (
"App::cpanminus" => "1.703",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
- "Exception::Class" => "1.32",
+ "Class::Tiny" => "1.001",
"ExtUtils::MakeMaker" => "6.64",
"File::pushd" => 0,
"Getopt::Long" => "2.39",
@@ -62,7 +61,6 @@ my %FallbackPrereqs = (
"Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
"Module::Reader" => "0.002",
- "Moo" => "1.002",
"Path::Tiny" => "0.033",
"Try::Tiny" => "0.09",
"parent" => "0.223",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index e9d7b1e..0e06773 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.12");
+use version; our $VERSION = version->declare("v1.0.13");
1;
__END__