summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2012-05-10 21:09:31 +0200
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2012-05-10 21:09:31 +0200
commit788034fdd8a1bff581e2ab9919f93bddef3a7bcb (patch)
tree95138cab66db9d784c5d907f04f92dc7361f2eb7
parent8e653eb2f5273b58f7964407d4dda00f20be2e9e (diff)
downloadcarton-788034fdd8a1bff581e2ab9919f93bddef3a7bcb.tar.gz
Checking in changes prior to tagging of version v0.9_6.v0.9_6
Changelog diff is: diff --git a/Changes b/Changes index e6ba189..48448c0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for carton +v0.9_6 Thu May 10 21:05:35 CEST 2012 + - use cpanfile + Module::Install for dogfooding + - `carton` without args now does `carton install` (inspired by bundler) + - Update bundle command to use install.json (masaki) + - code cleanups and doc overhauls + - removed `uninstall` command for now + - Fixed CPAN::Meta::Requirements dependency + v0.9_5 Thu Apr 12 19:39:19 JST 2012 - Added experimental cpanfile support - Fixed POD (yanick)
-rw-r--r--Changes8
-rw-r--r--MANIFEST7
-rw-r--r--lib/Carton.pm2
3 files changed, 13 insertions, 4 deletions
diff --git a/Changes b/Changes
index e6ba189..48448c0 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,13 @@
Revision history for carton
+v0.9_6 Thu May 10 21:05:35 CEST 2012
+ - use cpanfile + Module::Install for dogfooding
+ - `carton` without args now does `carton install` (inspired by bundler)
+ - Update bundle command to use install.json (masaki)
+ - code cleanups and doc overhauls
+ - removed `uninstall` command for now
+ - Fixed CPAN::Meta::Requirements dependency
+
v0.9_5 Thu Apr 12 19:39:19 JST 2012
- Added experimental cpanfile support
- Fixed POD (yanick)
diff --git a/MANIFEST b/MANIFEST
index 1c03a1a..a6d29c4 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -12,10 +12,14 @@ docs/carton-tree.pod
docs/carton-uninstall.pod
docs/carton-version.pod
docs/carton.pod
+inc/Module/CPANfile.pm
inc/Module/Install.pm
+inc/Module/Install/AuthorRequires.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
+inc/Module/Install/CPANfile.pm
inc/Module/Install/Fetch.pm
+inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/ReadmeFromPod.pm
@@ -33,7 +37,6 @@ lib/Carton/Doc/Install.pod
lib/Carton/Doc/List.pod
lib/Carton/Doc/Show.pod
lib/Carton/Doc/Tree.pod
-lib/Carton/Doc/Uninstall.pod
lib/Carton/Doc/Version.pod
lib/Carton/Error.pm
lib/Carton/Tree.pm
@@ -47,8 +50,6 @@ xt/CLI.pm
xt/cli/check.t
xt/cli/exec.t
xt/cli/mirror.t
-xt/cli/uninstall.t
-xt/cli/uninstall_dep.t
xt/cli/version.t
xt/mirror/modules/02packages.details.txt
xt/pod.t
diff --git a/lib/Carton.pm b/lib/Carton.pm
index f49610a..fe0a0e7 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -3,7 +3,7 @@ package Carton;
use strict;
use warnings;
use 5.008_001;
-use version; our $VERSION = "v0.9_5";
+use version; our $VERSION = "v0.9_6";
use Cwd;
use Config qw(%Config);