[carton] 398/472: v1.0.5

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Fri Jul 24 00:39:28 UTC 2015


This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a commit to branch master
in repository carton.

commit 13adefdb8ad45f1dd0dd3d56f60e94627a0a38e0
Author: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
Date:   Thu Aug 8 12:50:46 2013 -0700

    v1.0.5
---
 Build.PL      |  4 ++--
 Changes       |  5 +++++
 META.json     |  7 ++++---
 README.md     | 18 ++++++++++++++++++
 lib/Carton.pm |  2 +-
 5 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/Build.PL b/Build.PL
index f0c1d83..6f6150b 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,13 +18,13 @@ my %module_build_args = (
     "Tatsuhiko Miyagawa"
   ],
   "dist_name" => "Carton",
-  "dist_version" => "v1.0.4",
+  "dist_version" => "v1.0.5",
   "license" => "perl",
   "module_name" => "Carton",
   "recommends" => {},
   "recursive_test_files" => 1,
   "requires" => {
-    "App::cpanminus" => "1.6937",
+    "App::cpanminus" => "1.694",
     "CPAN::Meta" => "2.120921",
     "CPAN::Meta::Requirements" => "2.121",
     "Exception::Class" => "1.32",
diff --git a/Changes b/Changes
index ccf5dba..dfdee23 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,11 @@ Revision history for carton
 
 {{$NEXT}}
 
+v1.0.5  2013-08-08 12:50:39 PDT
+        - Bump cpanm for version extraction #126
+        - Fix doc about --cached (shibayu36)
+        - Fix Usage errors #123
+
 v1.0.4  2013-08-05 19:20:11 PDT
         - Bump cpanm to deal with failing to extract versions with version.pm #120 (lestrrat)
 
diff --git a/META.json b/META.json
index 00d3833..cdf4b76 100644
--- a/META.json
+++ b/META.json
@@ -46,7 +46,7 @@
       },
       "runtime" : {
          "requires" : {
-            "App::cpanminus" : "1.6937",
+            "App::cpanminus" : "1.694",
             "CPAN::Meta" : "2.120921",
             "CPAN::Meta::Requirements" : "2.121",
             "Exception::Class" : "1.32",
@@ -78,7 +78,7 @@
          "web" : "https://github.com/miyagawa/carton"
       }
    },
-   "version" : "v1.0.4",
+   "version" : "v1.0.5",
    "x_contributors" : [
       "Christian Walde <walde.christian at googlemail.com>",
       "David Golden <dagolden at cpan.org>",
@@ -89,7 +89,8 @@
       "Pedro Figueiredo <me at pedrofigueiredo.org>",
       "Tatsuhiko Miyagawa <miyagawa at gmail.com>",
       "Yanick Champoux <yanick at babyl.dyndns.org>",
-      "ikasam_a <masaki.nakagawa at gmail.com>"
+      "ikasam_a <masaki.nakagawa at gmail.com>",
+      "shiba_yu36 <shibayu36 at gmail.com>"
    ]
 }
 
diff --git a/README.md b/README.md
index 49893f4..2439fbd 100644
--- a/README.md
+++ b/README.md
@@ -105,6 +105,24 @@ will install modules using this local cache. Combined with
 CPAN Meta DB or downloading files from CPAN mirrors upon deployment
 time.
 
+# PERL VERSIONS
+
+When you take a snapshot in one perl version and deploy on another
+(different) version, you might have troubles with core modules.
+
+The simplest solution, which might not work for everybody, is to use
+the same version of perl in the development and deployment.
+
+To enforce that, you're recommended to use [plenv](http://search.cpan.org/perldoc?plenv) and
+`.perl-version` to lock perl versions in development.
+
+You can also specify the minimum perl required in `cpanfile`:
+
+    requires 'perl', '5.16.3';
+
+and carton (and cpanm) will give you errors when deployed on hosts
+with perl lower than the specified version.
+
 # COMMUNITY
 
 - [https://github.com/miyagawa/carton](https://github.com/miyagawa/carton)
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 9a06c58..4cd23ad 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.4");
+use version; our $VERSION = version->declare("v1.0.5");
 
 1;
 __END__

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/carton.git



More information about the Pkg-perl-cvs-commits mailing list