summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-04-28 08:31:36 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-04-28 08:31:36 -0700
commit438a2f0ee7a805bc67ba641e99f8bf6f7f867026 (patch)
tree45c038e1f8c33c2352ada191b664a924d4719d3a
parentb6ca562d2f172250f91f322cbd7f42a0f43b4ea8 (diff)
downloadcarton-438a2f0ee7a805bc67ba641e99f8bf6f7f867026.tar.gz
v1.0.31v1.0.31
-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 2bdbc28..f842df6 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.31 2018-04-28 08:31:27 PDT
+ - Fix carton fatpack to include runtime dependencies for Menlo #571
+
v1.0.30 2018-04-25 02:42:18 PDT
- depend on Menlo::CLI::Compat for Menlo-Legacy
diff --git a/META.json b/META.json
index 5f6ea02..393d980 100644
--- a/META.json
+++ b/META.json
@@ -72,7 +72,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.30",
+ "version" : "v1.0.31",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index bc0f293..2a2a510 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -33,7 +33,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.30",
+ "VERSION" => "v1.0.31",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 96cef93..8d18a99 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.30");
+use version; our $VERSION = version->declare("v1.0.31");
1;
__END__