From 76c4c3c2d4989b8d07c0d5c734806e08f34d3936 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Miyagawa Date: Sun, 19 Apr 2015 19:38:50 +0200 Subject: v1.0.13 --- Changes | 6 ++++++ META.json | 7 +++---- Makefile.PL | 8 +++----- lib/Carton.pm | 2 +- 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 ", "David Golden ", 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__ -- cgit v1.2.1