From: Dave Rolsky Date: Sat, 25 Apr 2009 22:06:02 +0000 (-0500) Subject: add changes, release date, and bump version X-Git-Tag: 0.13~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types-Structured.git;a=commitdiff_plain;h=aff0f2cd6f412bf9ca22a6aded4618051bc57fc0 add changes, release date, and bump version --- diff --git a/Changes b/Changes index 457a4e2..d0b5c1b 100644 --- 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 diff --git a/lib/MooseX/Meta/TypeCoercion/Structured.pm b/lib/MooseX/Meta/TypeCoercion/Structured.pm index 2316cc4..b42eba9 100644 --- a/lib/MooseX/Meta/TypeCoercion/Structured.pm +++ b/lib/MooseX/Meta/TypeCoercion/Structured.pm @@ -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); diff --git a/lib/MooseX/Types/Structured.pm b/lib/MooseX/Types/Structured.pm index 90cf51c..8a19d8b 100644 --- a/lib/MooseX/Types/Structured.pm +++ b/lib/MooseX/Types/Structured.pm @@ -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