summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-21 20:21:36 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-21 20:21:36 -0700
commite266b29c1b68130e441696f49cd40ef644e46425 (patch)
tree4bdc556c2833aa976e0a432976d8dc316fcf15a8
parent311b2daf6c78c790c1136dc54c0fe5e29e42e2dc (diff)
downloadcarton-e266b29c1b68130e441696f49cd40ef644e46425.tar.gz
v1.0.25v1.0.25
-rw-r--r--Changes3
-rw-r--r--META.json7
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Carton.pm2
4 files changed, 9 insertions, 5 deletions
diff --git a/Changes b/Changes
index c66a404..e453401 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.25 2016-05-21 20:21:22 PDT
+ - Handle 'undef' in snapshot and 02packages, separate from '0'
+
v1.0.24 2016-05-08 11:56:14 PDT
- Same as v1.0.23, repackaging
diff --git a/META.json b/META.json
index 46c7056..09551ce 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
"Tatsuhiko Miyagawa"
],
"dynamic_config" : 0,
- "generated_by" : "Dist::Zilla version 5.047, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.150005",
+ "generated_by" : "Dist::Zilla version 5.047, Dist::Milla version v1.0.16, CPAN::Meta::Converter version 2.150005",
"license" : [
"perl_5"
],
@@ -33,7 +33,7 @@
"develop" : {
"requires" : {
"Capture::Tiny" : "0",
- "Dist::Milla" : "v1.0.15",
+ "Dist::Milla" : "v1.0.16",
"Test::More" : "0.9",
"Test::Pod" : "1.41",
"Test::Requires" : "0"
@@ -74,12 +74,13 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.24",
+ "version" : "v1.0.25",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
"David Steinbrunner <dsteinbrunner@pobox.com>",
"Jonathan Steinert <hachi@fastly.com>",
+ "Jose Luis Martinez <jlmartinez@capside.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 3e434e3..1c0f42a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.24",
+ "VERSION" => "v1.0.25",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 45703d4..261ee13 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.24");
+use version; our $VERSION = version->declare("v1.0.25");
1;
__END__