summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-08-10 21:55:37 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-08-10 21:55:37 -0700
commit33906cf4d041dc27353a6531089c690197c06403 (patch)
tree77e781ca7eb89832e5702505e8fc4939e5e474c0
parent9e3c6988dd40e9a2cfd4a9f2e8b068299274dcc3 (diff)
downloadcarton-33906cf4d041dc27353a6531089c690197c06403.tar.gz
v1.0.7v1.0.7
-rw-r--r--Build.PL3
-rw-r--r--Changes4
-rw-r--r--META.json3
-rw-r--r--lib/Carton.pm2
4 files changed, 7 insertions, 5 deletions
diff --git a/Build.PL b/Build.PL
index 0b643db..ff4848b 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,7 +18,7 @@ my %module_build_args = (
"Tatsuhiko Miyagawa"
],
"dist_name" => "Carton",
- "dist_version" => "v1.0.6",
+ "dist_version" => "v1.0.7",
"license" => "perl",
"module_name" => "Carton",
"recommends" => {},
@@ -41,7 +41,6 @@ my %module_build_args = (
"Moo" => "1.002",
"Path::Tiny" => "0.022",
"Try::Tiny" => "0.09",
- "local::lib" => "1.008",
"parent" => "0.223",
"perl" => "v5.8.5"
},
diff --git a/Changes b/Changes
index 909661a..8db5804 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.7 2013-08-10 21:55:29 PDT
+ - Worked around fatpack issue with perl < 5.16 with missing File::Spec
+ - Included missing requirements for fatpack executable
+
v1.0.6 2013-08-10 17:59:51 PDT
- Added upgrading documentation (carton help upgrading)
- Experimental support for fatpacked carton executable in vendor/bin in bundle
diff --git a/META.json b/META.json
index 3994c1a..57b9d65 100644
--- a/META.json
+++ b/META.json
@@ -62,7 +62,6 @@
"Moo" : "1.002",
"Path::Tiny" : "0.022",
"Try::Tiny" : "0.09",
- "local::lib" : "1.008",
"parent" : "0.223",
"perl" : "v5.8.5"
}
@@ -80,7 +79,7 @@
"web" : "https://github.com/miyagawa/carton"
}
},
- "version" : "v1.0.6",
+ "version" : "v1.0.7",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 8ccb4f5..0d582e1 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.6");
+use version; our $VERSION = version->declare("v1.0.7");
1;
__END__