summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-07-26 17:49:37 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-07-26 17:49:37 -0700
commit67342d7c6961ba2397913f454363bd891fac59cb (patch)
treec688d2e9ebf830c597644f4240679231e272a2ec
parent480b1c3ab4de5e41a4a14df3dfa33047d88a3045 (diff)
downloadcarton-67342d7c6961ba2397913f454363bd891fac59cb.tar.gz
v0.9.68v0.9.68
-rw-r--r--Build.PL7
-rw-r--r--Changes4
-rw-r--r--META.json5
-rw-r--r--lib/Carton.pm2
4 files changed, 12 insertions, 6 deletions
diff --git a/Build.PL b/Build.PL
index 6a71997..1935272 100644
--- a/Build.PL
+++ b/Build.PL
@@ -17,10 +17,10 @@ my %module_build_args = (
"dist_author" => [
"Tatsuhiko Miyagawa"
],
- "dist_name" => "carton",
- "dist_version" => "v0.9.67",
+ "dist_name" => "Carton",
+ "dist_version" => "v0.9.68",
"license" => "perl",
- "module_name" => "carton",
+ "module_name" => "Carton",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
@@ -33,6 +33,7 @@ my %module_build_args = (
"JSON" => "2.53",
"Module::Build" => "0.4004",
"Module::CPANfile" => "0.9031",
+ "Module::CoreList" => 0,
"Module::Metadata" => "1.000003",
"Moo" => "1.002",
"Path::Tiny" => "0.022",
diff --git a/Changes b/Changes
index 9e8eaa8..cb5c74c 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v0.9.68 2013-07-26 17:49:28 PDT
+ - Change the distribution name case, to match with the module name
+ - Add Module::CoreList as a dependency for perl 5.8
+
v0.9.67 2013-07-24 14:53:53 PDT
- Use cpanm's fatscript interface rather than share dir
diff --git a/META.json b/META.json
index 3069771..105f25b 100644
--- a/META.json
+++ b/META.json
@@ -12,7 +12,7 @@
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
- "name" : "carton",
+ "name" : "Carton",
"no_index" : {
"directory" : [
"t",
@@ -55,6 +55,7 @@
"JSON" : "2.53",
"Module::Build" : "0.4004",
"Module::CPANfile" : "0.9031",
+ "Module::CoreList" : "0",
"Module::Metadata" : "1.000003",
"Moo" : "1.002",
"Path::Tiny" : "0.022",
@@ -77,7 +78,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v0.9.67",
+ "version" : "v0.9.68",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 62b081b..fbf2255 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("v0.9.67");
+use version; our $VERSION = version->declare("v0.9.68");
1;
__END__