[carton] 269/472: v0.9.55

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Fri Jul 24 00:38:53 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 a3c34cb9b552a7114adee5bdd476f69e1116a812
Author: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
Date:   Mon Jun 3 23:44:10 2013 +0900

    v0.9.55
---
 Build.PL      |  4 +++-
 Changes       |  4 ++++
 META.json     |  4 +++-
 README.md     | 10 +++++-----
 lib/Carton.pm |  2 +-
 5 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/Build.PL b/Build.PL
index 054b003..7904a03 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,7 +18,7 @@ my %module_build_args = (
     "Tatsuhiko Miyagawa"
   ],
   "dist_name" => "carton",
-  "dist_version" => "v0.9.54",
+  "dist_version" => "v0.9.55",
   "license" => "perl",
   "module_name" => "carton",
   "recommends" => {},
@@ -26,11 +26,13 @@ my %module_build_args = (
   "requires" => {
     "App::cpanminus" => "1.6915",
     "CPAN::Meta" => "2.120921",
+    "CPAN::Meta::Requirements" => "2.121",
     "Exception::Class" => "1.32",
     "ExtUtils::MakeMaker" => "6.59",
     "Getopt::Long" => "2.39",
     "JSON" => "2.53",
     "Module::Build" => "0.38",
+    "Module::CPANfile" => "0.9031",
     "Module::Metadata" => "1.000003",
     "Moo" => "1.002",
     "Try::Tiny" => "0.09",
diff --git a/Changes b/Changes
index 8c2a169..bc1c1dc 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
 
 {{$NEXT}}
 
+v0.9.55  2013-06-03 23:43:52 JST
+        - Added back carton tree command
+        - Added --distfile option to list command
+
 v0.9.54  2013-06-02 12:38:20 JST
         - Install develop phase dependencies by default with carton install
         - carton exec now doesn't set PERL5OPT with lib::core::only, so as not to mess with
diff --git a/META.json b/META.json
index db7f797..068afe5 100644
--- a/META.json
+++ b/META.json
@@ -48,11 +48,13 @@
          "requires" : {
             "App::cpanminus" : "1.6915",
             "CPAN::Meta" : "2.120921",
+            "CPAN::Meta::Requirements" : "2.121",
             "Exception::Class" : "1.32",
             "ExtUtils::MakeMaker" : "6.59",
             "Getopt::Long" : "2.39",
             "JSON" : "2.53",
             "Module::Build" : "0.38",
+            "Module::CPANfile" : "0.9031",
             "Module::Metadata" : "1.000003",
             "Moo" : "1.002",
             "Try::Tiny" : "0.09",
@@ -74,7 +76,7 @@
          "web" : "https://github.com/miyagawa/carton"
       }
    },
-   "version" : "v0.9.54",
+   "version" : "v0.9.55",
    "x_contributors" : [
       "Christian Walde <walde.christian at googlemail.com>",
       "David Golden <dagolden at cpan.org>",
diff --git a/README.md b/README.md
index 9806465..c8e45cf 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Carton - Perl module dependency manager (aka Bundler for Perl)
 
     # Other developer's machine, or on a deployment box
     > carton install
-    > carton exec -Ilib -- starman -p 8080 myapp.psgi
+    > carton exec starman -p 8080 myapp.psgi
 
 # WARNING
 
@@ -89,13 +89,13 @@ available on CPAN, such as internal distribution aka DarkPAN.
 
     > carton bundle
 
-will bundle these tarballs into _local/cache_ directory, and
+will bundle these tarballs into _vendor/cache_ directory, and
 
     > carton install --cached
 
-will install modules using this local cache. This way you can avoid a
-dependency on CPAN meta DB and search.cpan.org at a deploy time, or
-you can have dependencies onto private CPAN modules aka DarkPAN.
+will install modules using this local cache. This way you can avoid
+querying for a database like CPAN Meta DB or CPAN mirrors upon
+deployment time.
 
 # COMMUNITY
 
diff --git a/lib/Carton.pm b/lib/Carton.pm
index a236878..efa970d 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("v0.9.54");
+use version; our $VERSION = version->declare("v0.9.55");
 
 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