* Add current $VERSION to all files.
Piotr Roszatycki [Sat, 29 Nov 2008 11:44:35 +0000 (11:44 +0000)]
12 files changed:
lib/MooseX/Getopt.pm
lib/MooseX/Getopt/Meta/Attribute.pm
lib/MooseX/Getopt/Meta/Attribute/NoGetopt.pm
lib/MooseX/Getopt/Meta/Attribute/Trait.pm
lib/MooseX/Getopt/Meta/Attribute/Trait/NoGetopt.pm
lib/MooseX/Getopt/OptionTypeMap.pm
lib/MooseX/Getopt/Parser.pm
lib/MooseX/Getopt/Parser/Default.pm
lib/MooseX/Getopt/Parser/Descriptive.pm
lib/MooseX/Getopt/Parser/Long.pm
lib/MooseX/Getopt/Session.pm
lib/MooseX/Getopt/Strict.pm

index ce091a6..49ac048 100644 (file)
@@ -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<Bool|Int>, I<Bool|Float>, I<Bool|Str>
+=item I<Defined|Int>, I<Defined|Float>, I<Defined|Str>
 
 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.
index 09f4e7a..eb75ba5 100644 (file)
@@ -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 :)
index 7f6f0fe..d1516b6 100644 (file)
@@ -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 :)
index b2eb96c..3866468 100644 (file)
@@ -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' => (
index 4603936..d746df6 100644 (file)
@@ -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;
index 09f29b3..78d4271 100644 (file)
@@ -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';
 
 
index 4de40ce..437ab99 100644 (file)
@@ -1,6 +1,8 @@
 
 package MooseX::Getopt::Parser;
 
+our $VERSION   = '0.150001';
+
 use Moose::Role;
 requires 'build_options';
 
index f8342fc..ef95e88 100644 (file)
@@ -1,6 +1,8 @@
 
 package MooseX::Getopt::Parser::Default;
 
+our $VERSION   = '0.150001';
+
 use Moose;
 
 use MooseX::Getopt::Parser::Long;
index cf2a8f3..c1e9ed3 100644 (file)
@@ -1,6 +1,8 @@
 
 package MooseX::Getopt::Parser::Descriptive;
 
+our $VERSION   = '0.150001';
+
 use Moose;
 
 with 'MooseX::Getopt::Parser';
index f2b8471..9585f8e 100644 (file)
@@ -1,6 +1,8 @@
 
 package MooseX::Getopt::Parser::Long;
 
+our $VERSION   = '0.150001';
+
 use Moose;
 
 with 'MooseX::Getopt::Parser';
index e0bfff0..22970ed 100644 (file)
@@ -1,6 +1,8 @@
 
 package MooseX::Getopt::Session;
 
+our $VERSION   = '0.150001';
+
 use Moose;
 
 use MooseX::Getopt::Parser::Default;
index bb5e096..e61cfe4 100644 (file)
@@ -1,5 +1,8 @@
 
 package MooseX::Getopt::Strict;
+
+our $VERSION   = '0.150001';
+
 use Moose::Role;
 
 with 'MooseX::Getopt';