Changelog 0.24
Tomas Doran (t0m) [Fri, 23 Oct 2009 16:38:43 +0000 (17:38 +0100)]
ChangeLog
lib/MooseX/Getopt.pm

index 3832495..6bfd1ec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Revision history for Perl extension MooseX-Getopt
 
+0.24 Fri. Oct  23 2009
+  * MooseX::Getopt
+    - Fix bug with mixed case attribute names (MAROS)
+
 0.23 Fri. Oct  02 2009
   * MooseX::Getopt
     - Allow the config file to return a code ref which is called to return
index cc265b5..1dedd87 100644 (file)
@@ -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.23';
+our $VERSION   = '0.24';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has ARGV       => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");