summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--META.json2
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Carton.pm2
4 files changed, 6 insertions, 3 deletions
diff --git a/Changes b/Changes
index 25c1010..7cb92c3 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.18 2015-04-29 13:46:21 PDT
+ - Sort 02packages case insensitive, like PAUSE
+
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
diff --git a/META.json b/META.json
index 0da7535..4a50d5b 100644
--- a/META.json
+++ b/META.json
@@ -76,7 +76,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.17",
+ "version" : "v1.0.18",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index f385201..50d68b4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -36,7 +36,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.17",
+ "VERSION" => "v1.0.18",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 173f730..997946d 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.17");
+use version; our $VERSION = version->declare("v1.0.18");
1;
__END__