From: Tomas Doran (t0m) <t0m@state51.co.uk>
Date: Fri, 23 Oct 2009 16:38:43 +0000 (+0100)
Subject: Changelog
X-Git-Tag: 0.24
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6ac742987c64a78bf01e9c95085c397d32f60719;p=gitmo%2FMooseX-Getopt.git

Changelog
---

diff --git a/ChangeLog b/ChangeLog
index 3832495..6bfd1ec 100644
--- 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
diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm
index cc265b5..1dedd87 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.23';
+our $VERSION   = '0.24';
 our $AUTHORITY = 'cpan:STEVAN';
 
 has ARGV       => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");