From: Stevan Little Date: Tue, 26 Jun 2007 19:11:35 +0000 (+0000) Subject: 0.04 X-Git-Tag: 0_05^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=commitdiff_plain;h=1566a17bad230f7f8560beb67acbbf55a99cde58 0.04 --- diff --git a/ChangeLog b/ChangeLog index 6d6a9aa..1615caa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,9 @@ Revision history for Perl extension MooseX-Getopt +0.04 Tues. June 26, 2007 * MooseX::Getopt::OptionTypeMap - Added support for subtype constraint inference - from parent types + from parent types - added tests and docs for this * MooseX::Getopt - Added extra_argv attribute diff --git a/MANIFEST b/MANIFEST index 26a734a..74f4710 100644 --- a/MANIFEST +++ b/MANIFEST @@ -11,5 +11,6 @@ lib/MooseX/Getopt/Meta/Attribute.pm t/000_load.t t/001_basic.t t/002_custom_option_type.t +t/003_inferred_option_type.t t/pod.t t/pod_coverage.t diff --git a/README b/README index b44603b..a202abc 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -MooseX::Getopt version 0.03 +MooseX::Getopt version 0.04 =========================== See the individual module documentation for more information diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index 666ef15..6e5ead6 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -7,7 +7,7 @@ use Getopt::Long (); use MooseX::Getopt::OptionTypeMap; use MooseX::Getopt::Meta::Attribute; -our $VERSION = '0.03'; +our $VERSION = '0.04'; our $AUTHORITY = 'cpan:STEVAN'; has ARGV => (is => 'rw', isa => 'ArrayRef'); diff --git a/lib/MooseX/Getopt/OptionTypeMap.pm b/lib/MooseX/Getopt/OptionTypeMap.pm index 69ac55e..10de77f 100644 --- a/lib/MooseX/Getopt/OptionTypeMap.pm +++ b/lib/MooseX/Getopt/OptionTypeMap.pm @@ -4,7 +4,7 @@ package MooseX::Getopt::OptionTypeMap; use Moose 'confess'; use Moose::Util::TypeConstraints 'find_type_constraint'; -our $VERSION = '0.01'; +our $VERSION = '0.02'; our $AUTHORITY = 'cpan:STEVAN'; my %option_type_map = (