summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-04-27 16:18:16 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-04-27 16:18:16 -0700
commit57fc954f08c88afcdd6e47f1f353a57040a62e21 (patch)
treeae00f7ad73a6c72fe29cc087b2968590d9c9f4f5
parent57f51cf68ae099189632f9e42cfa22fd328110fa (diff)
downloadcarton-57fc954f08c88afcdd6e47f1f353a57040a62e21.tar.gz
v1.0.17v1.0.17
-rw-r--r--Changes4
-rw-r--r--META.json3
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Carton.pm2
4 files changed, 8 insertions, 3 deletions
diff --git a/Changes b/Changes
index bf7d820..25c1010 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.17 2015-04-27 16:18:04 PDT
+ - Add back warnings to Carton::CLI
+ - Properly fail when a command is not found in carton exec (hachi) #193
+
v1.0.16 2015-04-25 06:37:17 PDT
- update 02packages.details.txt whitespace padding to follow PAUSE
diff --git a/META.json b/META.json
index 5979b9d..0da7535 100644
--- a/META.json
+++ b/META.json
@@ -76,12 +76,13 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.16",
+ "version" : "v1.0.17",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
"David Steinbrunner <dsteinbrunner@pobox.com>",
"ikasam_a <masaki.nakagawa@gmail.com>",
+ "Jonathan Steinert <hachi@fastly.com>",
"Kan Fushihara <kan.fushihara@gmail.com>",
"Masahiro Chiba <chiba@everqueue.com>",
"NAKAGAWA Masaki <masaki.nakagawa@gmail.com>",
diff --git a/Makefile.PL b/Makefile.PL
index 75cc418..f385201 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -36,7 +36,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.16",
+ "VERSION" => "v1.0.17",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 4cc33e6..173f730 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.16");
+use version; our $VERSION = version->declare("v1.0.17");
1;
__END__