From: Tomas Doran Date: Thu, 10 Dec 2009 23:21:36 +0000 (+0000) Subject: Bump version X-Git-Tag: 0.26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=8b9e50c33133b5735d32f4b3d05eee82a919b382 Bump version --- diff --git a/ChangeLog b/ChangeLog index 36e2cd6..7f63092 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ Revision history for Perl extension MooseX-Getopt +0.26 Thu. Dec 10 2009 * MooseX::Getopt::Basic - Fix bug with attribute names containing upper case letters. * Test suite: diff --git a/README b/README index 6e04d79..808fc07 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -MooseX::Getopt version 0.25 +MooseX::Getopt version 0.26 =========================== See the individual module documentation for more information diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index 4f1903b..eed3afc 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -3,7 +3,7 @@ use Moose::Role; use constant _HAVE_GLD => not not eval { require Getopt::Long::Descriptive }; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; with _HAVE_GLD ? 'MooseX::Getopt::GLD' : 'MooseX::Getopt::Basic'; diff --git a/lib/MooseX/Getopt/Meta/Attribute.pm b/lib/MooseX/Getopt/Meta/Attribute.pm index 4445e14..e668587 100644 --- a/lib/MooseX/Getopt/Meta/Attribute.pm +++ b/lib/MooseX/Getopt/Meta/Attribute.pm @@ -3,7 +3,7 @@ package MooseX::Getopt::Meta::Attribute; use Moose; use Moose::Util::TypeConstraints; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; extends 'Moose::Meta::Attribute'; # << Moose extending Moose :) diff --git a/lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm b/lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm index c941199..5d3d389 100644 --- a/lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm +++ b/lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm @@ -2,7 +2,7 @@ package MooseX::Getopt::Meta::Attribute::NoGetopt; use Moose; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; extends 'Moose::Meta::Attribute'; # << Moose extending Moose :) diff --git a/lib/MooseX/Getopt/Meta/Attribute/Trait.pm b/lib/MooseX/Getopt/Meta/Attribute/Trait.pm index aa9735d..0f7671d 100644 --- a/lib/MooseX/Getopt/Meta/Attribute/Trait.pm +++ b/lib/MooseX/Getopt/Meta/Attribute/Trait.pm @@ -3,7 +3,7 @@ package MooseX::Getopt::Meta::Attribute::Trait; use Moose::Role; use Moose::Util::TypeConstraints; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; has 'cmd_flag' => ( diff --git a/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm b/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm index c54fe0f..f9f01ba 100644 --- a/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm +++ b/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm @@ -2,7 +2,7 @@ package MooseX::Getopt::Meta::Attribute::Trait::NoGetopt; use Moose::Role; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; no Moose::Role; diff --git a/lib/MooseX/Getopt/OptionTypeMap.pm b/lib/MooseX/Getopt/OptionTypeMap.pm index 0f10309..56d69aa 100644 --- a/lib/MooseX/Getopt/OptionTypeMap.pm +++ b/lib/MooseX/Getopt/OptionTypeMap.pm @@ -4,7 +4,7 @@ package MooseX::Getopt::OptionTypeMap; use Moose 'confess', 'blessed'; use Moose::Util::TypeConstraints 'find_type_constraint'; -our $VERSION = '0.25'; +our $VERSION = '0.26'; our $AUTHORITY = 'cpan:STEVAN'; my %option_type_map = (