summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-21 20:29:25 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-21 20:29:25 -0700
commit4f0890ad408e65d70f22a29d84a2c746d2193cf9 (patch)
tree94fbcb8eb874f59f9b03a94d166b7f8d67aed619
parent76b0050b2abdd472c06541c22c244642cb9ffa32 (diff)
downloadcarton-4f0890ad408e65d70f22a29d84a2c746d2193cf9.tar.gz
v1.0.26v1.0.26
-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 e453401..8e64276 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.26 2016-05-21 20:29:11 PDT
+ - Make sure 'undef' and '0' are encoded properly writing 02packages as well
+
v1.0.25 2016-05-21 20:21:22 PDT
- Handle 'undef' in snapshot and 02packages, separate from '0'
diff --git a/META.json b/META.json
index 09551ce..6d48c82 100644
--- a/META.json
+++ b/META.json
@@ -74,7 +74,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.25",
+ "version" : "v1.0.26",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index 1c0f42a..5b5015c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.25",
+ "VERSION" => "v1.0.26",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 261ee13..ce70869 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.25");
+use version; our $VERSION = version->declare("v1.0.26");
1;
__END__