X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ChangeLog;h=2b8d2409618ec7b8f472c10719e434667a3b698a;hb=b4499cadcdb6cb24ebadba514cd43e28850512a9;hp=754ef60085b7c57b75cf8d408a58b897c9d286b1;hpb=063fae5ea7080c5bf1d13ef7c6ac3d42351ae3fd;p=gitmo%2FMooseX-AttributeHelpers.git diff --git a/ChangeLog b/ChangeLog index 754ef60..2b8d240 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,17 +1,78 @@ Revision history for Perl extension MooseX-AttributeHelpers -0.10 - - add Bool as an attribute helper (thanks to jasonmay) - -0.09 Sat. May, 24, 2008 - - remove Module::Build in favor of Module::Install +0.22 + - Fix to work with Moose 0.90. Ignore meta when auto-providing a method + provider's methods. (Dave Rolsky) +0.21 Sun July 19, 2009 + - Add length to String (Florian Ragwitz). + - Specify build dependency on Test::Moose (Closes RT#47258) (Florian Ragwitz). + - Fix the error message you get on unknown 'curries' parameters to tell you + what it really expected (Florian Ragwitz). + - Doc typo fix in Collection::Bag (Sartak). + +0.20 Thu June 25, 2009 + - MXAH is moving into core. This module will be deprecated when + that finally happens. + - Remove register_implementation methods from the traits because + we don't want to conflict with cored AttributeHelpers. You'll need to + specify the full package name for traits -- + MooseX::AttributeHelpers::Trait::Counter instead of Counter + - New provided method for hashs: elements (Returns the key, value + pairs in the hash as a flattened list) (plu) + +0.19 Sun June 14, 2009 + - No functional changes from 0.18_01 + +0.18_01 Mon June 1, 2009 + - Turn our metaclasses into traits, though metaclasses still exist for + backwards compatibility (Sartak and doy) + - Add accessor to Hash and Array (Sartak) + - Let the user know which constraint they have violated in the confessed + message (nperez) + +0.17 Fri April 19, 2009 + - Add defined to Hash (Evan Carroll). + +0.16 Sun April 5, 2009 + - Add substr to String (Florian Ragwitz). + +0.15 Thu March 26, 2009 + - The splice helper for arrays was completely broken. Reported by + Abhijit Mahabal. RT #43343. + +0.14 Thu October 2, 2008 + - Run pod tests only for authors + +0.13 Mon September 1, 2008 + - No code changes, just a stable release for Moose 0.56. + +0.12_01 Wed August 20, 2008 + - fixed some missing Pod::Coverage (stevan) + - fixes to work with Moose 0.55_01 and Class::MOP 0.64_01 + (nothingmuch) + +0.12 Sun. Jun 29, 2008 + - Move get from Array to List (gphat) + - Add first and last to List (gphat) + - Doc fixes (gphat) + - fix failing tests due to using DateTime (jasonmay) + +0.11 Thurs. Jun 26, 2008 + - add the ability to curry method providers (thanks to jasonmay) + - Counter: add set and allow inc and dec to accept args + - add Bool as an attribute helper (thanks to jasonmay) + - bump all modules to version 0.11 for consistency (Sartak) + +0.09 Sat. May 24, 2008 + - remove Module::Build in favor of Module::Install + * MooseX::AttributeHelpers::MethodProvider::Hash - - delete with multiple keys will now work (thanks to frodwith) + - delete with multiple keys will now work (thanks to frodwith) * MooseX::AttributeHelpers::MethodProvider::List - add "join" and "elements" provided methods (thanks to Sartak) - + * MooseX::AttributeHelpers::MethodProvider::Array - add "splice" provided method @@ -77,7 +138,7 @@ Revision history for Perl extension MooseX-AttributeHelpers * MooseX::AttributeHelpers::Base - added attribute $name to the params passed to process_options_or_provides(), which gives us more - flexibility when writing additional helpers + flexibility when writing additional helpers - removed check for 'provides' and 'isa' attr options before _process_options. It should be called always.