X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Changes;h=7e0522aa9bc4998f14ea4d2417c2167d1e7b6000;hb=a7116c4cfacdb17ebbc20bf0d2ee25bc8c22918a;hp=b41d63e50446e71db0cdc12683352e294b00cba0;hpb=edd1f10e13ab2e0c7ae7228e43f6fa884f08d881;p=gitmo%2FMoose.git diff --git a/Changes b/Changes index b41d63e..7e0522a 100644 --- a/Changes +++ b/Changes @@ -1,12 +1,47 @@ Also see Moose::Manual::Delta for more details of, and workarounds for, noteworthy changes. +1.14 Tue, Sep 21, 2010 + + [BUG FIXES] + + * Work around what looks like a bug in List::MoreUtils::any. This bug caused + a weird error when defining the same union type twice, but only when using + MooseX::Types. Reported by Curtis Jewell. RT #61001. (Dave Rolsky) + +1.13 Mon, Sep 13, 2010 + + [API CHANGES] + + * The deprecation warnings for alias and excludes are back, use -alias and + -excludes instead. (Dave Rolsky) + + [ENHANCEMENTS] + + * When composing one role into another and there is an attribute conflict, + the error message now includes the attribute name. Reported by Sam + Graham. RT #59985. (Dave Rolsky) + + * When a class is made immutable, the does_role method is overridden with a + much faster version that simply looks role names up in a hash. Code which + uses lots of role-based type constraints should be faster. (Dave Rolsky) + +1.12 Sat, Aug 28, 2010 + + [BUG FIXES] + + * Fix the MANIFEST. Fixes RT #60831, reported by Alberto Simões. + 1.11 Fri, Aug 27, 2010 [API CHANGES] * An attribute in a subclass can now override the value of "is". (doy) + * The deprecation warnings for alias and excludes have been turned back off + for this release, to give other module authors a chance to tweak their + code. (Dave Rolsky) + [BUG FIXES] * mro::get_linear_isa was being called as a function rather than a method,