[Bps-public-commit] r15826 - in App-CLI/trunk: . lib/App
clkao at bestpractical.com
clkao at bestpractical.com
Mon Sep 8 07:16:03 EDT 2008
Author: clkao
Date: Mon Sep 8 07:16:03 2008
New Revision: 15826
Modified:
App-CLI/trunk/ (props changed)
App-CLI/trunk/Changes
App-CLI/trunk/lib/App/CLI.pm
App-CLI/trunk/lib/App/CLI/Command.pm
Log:
r397 at mtl: clkao | 2006-11-25 05:23:50 +0800
App::CLI 0.07
Modified: App-CLI/trunk/Changes
==============================================================================
--- App-CLI/trunk/Changes (original)
+++ App-CLI/trunk/Changes Mon Sep 8 07:16:03 2008
@@ -1,3 +1,15 @@
+* 0.07 - 24 Nov 2006
+
+ * Don't use Carp without actually loading it.
+
+* 0.06 - 30 Jun 2006
+
+ * Really fix signatures.
+
+* 0.05 - 5 Jun 2006
+
+ * Fix signatures.
+
* 0.04 - 11 Apr 2006
* Delay loading Pod::Simple::Text.
Modified: App-CLI/trunk/lib/App/CLI.pm
==============================================================================
--- App-CLI/trunk/lib/App/CLI.pm (original)
+++ App-CLI/trunk/lib/App/CLI.pm Mon Sep 8 07:16:03 2008
@@ -1,5 +1,5 @@
package App::CLI;
-our $VERSION = 0.04;
+our $VERSION = 0.07;
use strict;
use warnings;
@@ -44,7 +44,6 @@
sub new {
my $class = shift;
my $self = bless {}, $class;
- Carp::cluck if ref($_[0]);
%$self = @_;
return $self;
}
Modified: App-CLI/trunk/lib/App/CLI/Command.pm
==============================================================================
--- App-CLI/trunk/lib/App/CLI/Command.pm (original)
+++ App-CLI/trunk/lib/App/CLI/Command.pm Mon Sep 8 07:16:03 2008
@@ -2,6 +2,7 @@
use strict;
use warnings;
use Locale::Maketext::Simple;
+use Carp ();
=head1 NAME
More information about the Bps-public-commit
mailing list