add changes, release date, and bump version
Dave Rolsky [Sat, 25 Apr 2009 22:06:02 +0000 (17:06 -0500)]
Changes
lib/MooseX/Meta/TypeCoercion/Structured.pm
lib/MooseX/Types/Structured.pm

diff --git a/Changes b/Changes
index 457a4e2..d0b5c1b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for MooseX-Types-Structured
 
+0.13    25 April 2009
+        -- Explicitly don't inline yet another constructor to avoid
+           warnings (autarch).
 0.12    21 April 2009
         -- Explicitly don't inline the constructor to avoid warnings (rafl).
         -- Pathological test cases for API methods equals, is_a_type_of and
index 2316cc4..b42eba9 100644 (file)
@@ -35,4 +35,4 @@ it under the same terms as Perl itself.
 
 =cut
 
-__PACKAGE__->meta->make_immutable;
\ No newline at end of file
+__PACKAGE__->meta->make_immutable(inline_constructor => 0);
index 90cf51c..8a19d8b 100644 (file)
@@ -8,7 +8,7 @@ use MooseX::Types -declare => [qw(Dict Tuple Optional)];
 use Sub::Exporter -setup => { exports => [ qw(Dict Tuple Optional slurpy) ] };
 use Devel::PartialDump;
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 our $AUTHORITY = 'cpan:JJNAPIORK';
 
 =head1 NAME