From: Tomas Doran Date: Fri, 2 Oct 2009 07:41:57 +0000 (+0100) Subject: Changelog, bump version X-Git-Tag: 0.23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5581bb1c2a9ecd7b7ebd193286410c3c5b9d0a47;hp=f2dfa116d68debe3d78919269774ff700f90ea2f;p=gitmo%2FMooseX-Getopt.git Changelog, bump version --- diff --git a/ChangeLog b/ChangeLog index 7049377..b21e894 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ Revision history for Perl extension MooseX-Getopt +0.23 Fri. Oct 02 2009 + * MooseX::Getopt + - Allow the config file to be a code ref which is called to return + the config file location (Gordon Irving) + 0.22 Sat. Sept 05 2009 - Require GLD 0.077 for RT#49427 as some versions are broken diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index 08bf037..ae791c0 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -11,7 +11,7 @@ use Carp (); use Getopt::Long (); # GLD uses it anyway, doesn't hurt use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive }; -our $VERSION = '0.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; has ARGV => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");