From: John Napiorkowski Date: Mon, 8 Dec 2008 17:52:47 +0000 (+0000) Subject: updated changelog in prep for new release X-Git-Tag: 0.06~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3108fd7b971a96b044bc451e7ed5d54bf2f2f3ff;p=gitmo%2FMooseX-Types-Structured.git updated changelog in prep for new release --- diff --git a/Changes b/Changes index d2bcc8e..e127c58 100644 --- a/Changes +++ b/Changes @@ -2,12 +2,12 @@ Revision history for MooseX-Types-Structured 0.06 06 November 2008 - Added a 'helper' type constraint called Optional. See docs for more. - - added lots of tests to cover the API better, coverage an fixes for + - added lots of tests to cover the API better, coverage and fixes for the ->parameterize method in particular have been clarified. - changes so that the type contraints are more forgiving when null values appear in method calls. - - used make_immutable which should speed up the constraints. - - removed some unneccesary calls to use Moose when I wasn't using Moose. + - used ->make_immutable which should speed up the constraints. + - removed some unnecessary calls to use Moose when I wasn't using Moose. - lots of little code cleanup work and more internal documentation. - This version requires a newer Moose than previous versions. The Makefile.PL has been updated to reflect this. diff --git a/Makefile.PL b/Makefile.PL index b752c0c..8fa2a42 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,7 +8,7 @@ author 'John Napiorkowski '; license 'perl'; ## Module dependencies -requires 'Moose' => '0.62'; +requires 'Moose' => '0.63'; requires 'MooseX::Types' => '0.07'; ## Testing dependencies diff --git a/t/09-optional.t b/t/09-optional.t index a977c6a..7079f4b 100755 --- a/t/09-optional.t +++ b/t/09-optional.t @@ -72,7 +72,7 @@ OBJECTTEST: { enum Gender, qw/male female transgendered/; - subtype TupleOptional1, + subtype TupleOptional1() => as Tuple[Int, MoreThanFive, Optional[Str|Object]]; subtype TupleOptional2,