summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build.PL4
-rw-r--r--Changes3
-rw-r--r--META.json4
-rw-r--r--lib/Carton.pm2
4 files changed, 8 insertions, 5 deletions
diff --git a/Build.PL b/Build.PL
index 6ddd253..a07f18e 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,13 +18,13 @@ my %module_build_args = (
"Tatsuhiko Miyagawa"
],
"dist_name" => "Carton",
- "dist_version" => "v1.0.1",
+ "dist_version" => "v1.0.2",
"license" => "perl",
"module_name" => "Carton",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
- "App::cpanminus" => "1.6935",
+ "App::cpanminus" => "1.6936",
"CPAN::Meta" => "2.120921",
"CPAN::Meta::Requirements" => "2.121",
"Exception::Class" => "1.32",
diff --git a/Changes b/Changes
index 6295c9c..9cb29cc 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.2 2013-08-04 21:49:14 PDT
+ - Bump cpanm dependency to deal with old dists with ancient META.yml (tokuhirom)
+
v1.0.1 2013-08-04 17:10:10 PDT
- Update docs
- Fixed bug where version range requirements are not properly preserved in the snapshot #117 (lestrrat)
diff --git a/META.json b/META.json
index 78cce7a..f3691da 100644
--- a/META.json
+++ b/META.json
@@ -46,7 +46,7 @@
},
"runtime" : {
"requires" : {
- "App::cpanminus" : "1.6935",
+ "App::cpanminus" : "1.6936",
"CPAN::Meta" : "2.120921",
"CPAN::Meta::Requirements" : "2.121",
"Exception::Class" : "1.32",
@@ -78,7 +78,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v1.0.1",
+ "version" : "v1.0.2",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 8db2069..cd2535a 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.1");
+use version; our $VERSION = version->declare("v1.0.2");
1;
__END__