bump version to 0.26
Dave Rolsky [Sun, 5 Jun 2011 15:26:24 +0000 (10:26 -0500)]
lib/MooseX/Types.pm
lib/MooseX/Types/Base.pm
lib/MooseX/Types/CheckedUtilExports.pm
lib/MooseX/Types/Combine.pm
lib/MooseX/Types/Moose.pm
lib/MooseX/Types/TypeDecorator.pm
lib/MooseX/Types/UndefinedType.pm
lib/MooseX/Types/Util.pm
lib/MooseX/Types/Wrapper.pm

index cb5e698..996b0c0 100644 (file)
@@ -20,7 +20,7 @@ use Scalar::Util                      'reftype';
 use namespace::clean -except => [qw( meta )];
 
 use 5.008;
-our $VERSION = '0.25';
+our $VERSION = '0.26';
 my $UndefMsg = q{Action for type '%s' not yet defined in library '%s'};
 
 =head1 SYNOPSIS
index 3c5176b..398ad9c 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Base;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 use Moose;
 
 =head1 NAME
index 5337873..78959d6 100644 (file)
@@ -6,7 +6,7 @@ safer for L<MooseX::Types>
 =cut
 
 package MooseX::Types::CheckedUtilExports;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 use strict;
 use warnings;
index 3e80002..0fdaa69 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Combine - Combine type libraries for exporting
 =cut
 
 package MooseX::Types::Combine;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 use strict;
 use warnings;
index 36ed545..c51e0be 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Moose;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 =head1 NAME
 
index 808e7d6..b95f124 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::TypeDecorator;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 use strict;
 use warnings;
@@ -201,7 +201,6 @@ sub AUTOLOAD {
     ## MooseX::Types::UndefinedType which AUTOLOADs during autovivication.
     
     my $return;
-    
     eval {
         $return = $self->__type_constraint->$method(@args);
     }; if($@) {
index e719ec8..4c4c10d 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::UndefinedType;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 =head1 NAME
 
index fc6488f..bf91020 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Util;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 
 =head1 NAME
 
index b3fc48a..02b196a 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Wrapper - Wrap exports from a library
 =cut
 
 package MooseX::Types::Wrapper;
-our $VERSION = "0.25";
+our $VERSION = "0.26";
 use Moose;
 
 use Carp::Clan      qw( ^MooseX::Types );