From: Yuval Kogman Date: Tue, 22 Jan 2008 13:58:55 +0000 (+0000) Subject: changelog and version bump X-Git-Tag: 0_09^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=08ff0d657bba58a1c3a2792619f2213ccea649b5 changelog and version bump --- diff --git a/ChangeLog b/ChangeLog index e7cd5a7..eec9237 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Revision history for Perl extension MooseX-Getopt +0.09 Tues. Jan. 22, 2008 + * MooseX::Getopt + - Use Getopt::Long::Descriptive if it's available + 0.08 Tues. Dec. 8, 2007 * MooseX::Getopt - Added support for configfile loading via diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index cb0d141..1f40e00 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -9,7 +9,7 @@ use MooseX::Getopt::Meta::Attribute::NoGetopt; use Getopt::Long (); # GLD uses it anyway, doesn't hurt use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive }; -our $VERSION = '0.08'; +our $VERSION = '0.09'; our $AUTHORITY = 'cpan:STEVAN'; has ARGV => (is => 'rw', isa => 'ArrayRef', documentation => "hidden");