From: Piotr Roszatycki Date: Sat, 29 Nov 2008 11:44:35 +0000 (+0000) Subject: * Add current $VERSION to all files. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=96df119bc747eb5823ba0490cf7d71d2dc457f6a;p=gitmo%2FMooseX-Getopt.git * Add current $VERSION to all files. --- diff --git a/lib/MooseX/Getopt.pm b/lib/MooseX/Getopt.pm index ce091a6..49ac048 100644 --- a/lib/MooseX/Getopt.pm +++ b/lib/MooseX/Getopt.pm @@ -1,5 +1,9 @@ package MooseX::Getopt; + +our $VERSION = '0.150001'; +our $AUTHORITY = 'cpan:STEVAN'; + use Moose::Role; use Moose::Util::TypeConstraints; @@ -15,10 +19,6 @@ use MooseX::Getopt::Meta::Attribute::NoGetopt; use Getopt::Long (); -our $VERSION = '0.150001'; -our $AUTHORITY = 'cpan:STEVAN'; - - use constant _default_getopt_session => 'MooseX::Getopt::Session'; @@ -207,7 +207,7 @@ which would enable the following command line options: These type constraints are set up as properly typed options with Getopt::Long, using the C<=i>, C<=f> and C<=s> modifiers as appropriate. -=item I, I, I +=item I, I, I These type constaints are set up as properly typed options with Getopt::Long, using the C<:i>, C<:f> and C<:s> modifiers as appropriate. diff --git a/lib/MooseX/Getopt/Meta/Attribute.pm b/lib/MooseX/Getopt/Meta/Attribute.pm index 09f4e7a..eb75ba5 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.05'; +our $VERSION = '0.150001'; 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 7f6f0fe..d1516b6 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.02'; +our $VERSION = '0.150001'; 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 b2eb96c..3866468 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.01'; +our $VERSION = '0.150001'; our $AUTHORITY = 'cpan:STEVAN'; has 'cmd_name' => ( diff --git a/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm b/lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm index 4603936..d746df6 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.01'; +our $VERSION = '0.150001'; our $AUTHORITY = 'cpan:STEVAN'; no Moose::Role; diff --git a/lib/MooseX/Getopt/OptionTypeMap.pm b/lib/MooseX/Getopt/OptionTypeMap.pm index 09f29b3..78d4271 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.04'; +our $VERSION = '0.150001'; our $AUTHORITY = 'cpan:STEVAN'; diff --git a/lib/MooseX/Getopt/Parser.pm b/lib/MooseX/Getopt/Parser.pm index 4de40ce..437ab99 100644 --- a/lib/MooseX/Getopt/Parser.pm +++ b/lib/MooseX/Getopt/Parser.pm @@ -1,6 +1,8 @@ package MooseX::Getopt::Parser; +our $VERSION = '0.150001'; + use Moose::Role; requires 'build_options'; diff --git a/lib/MooseX/Getopt/Parser/Default.pm b/lib/MooseX/Getopt/Parser/Default.pm index f8342fc..ef95e88 100644 --- a/lib/MooseX/Getopt/Parser/Default.pm +++ b/lib/MooseX/Getopt/Parser/Default.pm @@ -1,6 +1,8 @@ package MooseX::Getopt::Parser::Default; +our $VERSION = '0.150001'; + use Moose; use MooseX::Getopt::Parser::Long; diff --git a/lib/MooseX/Getopt/Parser/Descriptive.pm b/lib/MooseX/Getopt/Parser/Descriptive.pm index cf2a8f3..c1e9ed3 100644 --- a/lib/MooseX/Getopt/Parser/Descriptive.pm +++ b/lib/MooseX/Getopt/Parser/Descriptive.pm @@ -1,6 +1,8 @@ package MooseX::Getopt::Parser::Descriptive; +our $VERSION = '0.150001'; + use Moose; with 'MooseX::Getopt::Parser'; diff --git a/lib/MooseX/Getopt/Parser/Long.pm b/lib/MooseX/Getopt/Parser/Long.pm index f2b8471..9585f8e 100644 --- a/lib/MooseX/Getopt/Parser/Long.pm +++ b/lib/MooseX/Getopt/Parser/Long.pm @@ -1,6 +1,8 @@ package MooseX::Getopt::Parser::Long; +our $VERSION = '0.150001'; + use Moose; with 'MooseX::Getopt::Parser'; diff --git a/lib/MooseX/Getopt/Session.pm b/lib/MooseX/Getopt/Session.pm index e0bfff0..22970ed 100644 --- a/lib/MooseX/Getopt/Session.pm +++ b/lib/MooseX/Getopt/Session.pm @@ -1,6 +1,8 @@ package MooseX::Getopt::Session; +our $VERSION = '0.150001'; + use Moose; use MooseX::Getopt::Parser::Default; diff --git a/lib/MooseX/Getopt/Strict.pm b/lib/MooseX/Getopt/Strict.pm index bb5e096..e61cfe4 100644 --- a/lib/MooseX/Getopt/Strict.pm +++ b/lib/MooseX/Getopt/Strict.pm @@ -1,5 +1,8 @@ package MooseX::Getopt::Strict; + +our $VERSION = '0.150001'; + use Moose::Role; with 'MooseX::Getopt';