Version 0.22 0.22
Florian Ragwitz [Tue, 1 Jun 2010 18:10:29 +0000 (20:10 +0200)]
Changes
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

diff --git a/Changes b/Changes
index d720a0e..d3f7ebd 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for MooseX-Types
 
-        - Update docs to mention MRO::Compat rather than Class::C3
+0.22    Tue Jun  1 20:10:12 CEST 2010
+        - Update docs to mention MRO::Compat rather than Class::C3.
         - Added '0+' overloading to solve the type constraint equality
           regression introduced when Moose 1.05 tightened the rules
           determing type constraint equality.  Added tests for the
index e8b3e5c..b767a6f 100644 (file)
@@ -20,7 +20,7 @@ use Scalar::Util                      'reftype';
 use namespace::clean -except => [qw( meta )];
 
 use 5.008;
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 my $UndefMsg = q{Action for type '%s' not yet defined in library '%s'};
 
 =head1 SYNOPSIS
index 943f5a4..520273a 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Base;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 use Moose;
 
 =head1 NAME
index d959240..bed6caf 100644 (file)
@@ -6,7 +6,7 @@ safer for L<MooseX::Types>
 =cut
 
 package MooseX::Types::CheckedUtilExports;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 use strict;
 use warnings;
index 1ee476c..5269388 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Combine - Combine type libraries for exporting
 =cut
 
 package MooseX::Types::Combine;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 use strict;
 use warnings;
index ea86ec8..6abb320 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Moose;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 =head1 NAME
 
index 66e0d90..de56602 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::TypeDecorator;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 use strict;
 use warnings;
index eb6a970..2e4ce6b 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::UndefinedType;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 =head1 NAME
 
index bd4608c..042c362 100644 (file)
@@ -1,5 +1,5 @@
 package MooseX::Types::Util;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 
 =head1 NAME
 
index b57899f..1ea978d 100644 (file)
@@ -5,7 +5,7 @@ MooseX::Types::Wrapper - Wrap exports from a library
 =cut
 
 package MooseX::Types::Wrapper;
-our $VERSION = "0.21";
+our $VERSION = "0.22";
 use Moose;
 
 use Carp::Clan      qw( ^MooseX::Types );