From: Dave Rolsky Date: Sat, 19 May 2012 05:44:06 +0000 (-0500) Subject: v0.35 X-Git-Tag: v0.35^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Types.git;a=commitdiff_plain;h=3c7aa36260f6d1993a583f49fed4286cb341df76 v0.35 - The new delegation code could fail when a type had no parent. Attempting to subtype Any was one way to trigger the bug. (Dave Rolsky) - The new delegation code broke calling ->can or ->isa on MooseX::Types::TypeDecorator as a class method. (Dave Rolsky) --- diff --git a/Changes b/Changes index 25e7060..5330573 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for MooseX-Types {{$NEXT}} +0.35 2012-05-19 + - The new delegation code could fail when a type had no parent. Attempting to subtype Any was one way to trigger the bug. (Dave Rolsky)