Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Checking in changes prior to tagging of version v0.9_8.
Changelog diff is:

diff --git a/Changes b/Changes
index efb78cc..f45e46e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for carton

+v0.9_8  Tue Feb  5 12:17:54 PST 2013
+        - Do not use carton.lock to build extra dependencies. Everything has to be
+          pulled out of cpanfile, even with the deployment mode. This makes the deployment
+          much more reliable, and could possibly work with differing os/perl versions
+          across development and deployments.
+
 v0.9_7  Sat May 12 06:15:44 EEST 2012
         - Experimental multiple mirror support (nihen)
         - Fixed cpanm dependency to avoid cascading bug
  • Loading branch information
miyagawa committed Feb 5, 2013
1 parent d5479fc commit 0306536
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,5 +1,5 @@
MYMETA.* MYMETA.*
META.yml META.*
Makefile Makefile
inc/ inc/
pm_to_blib pm_to_blib
Expand Down
6 changes: 6 additions & 0 deletions Changes
@@ -1,5 +1,11 @@
Revision history for carton Revision history for carton


v0.9_8 Tue Feb 5 12:17:54 PST 2013
- Do not use carton.lock to build extra dependencies. Everything has to be
pulled out of cpanfile, even with the deployment mode. This makes the deployment
much more reliable, and could possibly work with differing os/perl versions
across development and deployments.

v0.9_7 Sat May 12 06:15:44 EEST 2012 v0.9_7 Sat May 12 06:15:44 EEST 2012
- Experimental multiple mirror support (nihen) - Experimental multiple mirror support (nihen)
- Fixed cpanm dependency to avoid cascading bug - Fixed cpanm dependency to avoid cascading bug
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -43,6 +43,7 @@ lib/Carton/Tree.pm
lib/Carton/Util.pm lib/Carton/Util.pm
Makefile.PL Makefile.PL
MANIFEST This list of files MANIFEST This list of files
META.json
META.yml META.yml
README README
t/00_compile.t t/00_compile.t
Expand Down
2 changes: 1 addition & 1 deletion lib/Carton.pm
Expand Up @@ -3,7 +3,7 @@ package Carton;
use strict; use strict;
use warnings; use warnings;
use 5.008_001; use 5.008_001;
use version; our $VERSION = "v0.9_7"; use version; our $VERSION = "v0.9_8";


use Cwd; use Cwd;
use Config qw(%Config); use Config qw(%Config);
Expand Down

0 comments on commit 0306536

Please sign in to comment.