From: Stevan Little Date: Wed, 16 Apr 2008 01:41:16 +0000 (+0000) Subject: adding changes and fixing some version numbers and author names X-Git-Tag: 0_55~219 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6c36eeaa301f0c72e114e93e5a48673b5168e283;p=gitmo%2FMoose.git adding changes and fixing some version numbers and author names --- diff --git a/Changes b/Changes index d41647a..41b0682 100644 --- a/Changes +++ b/Changes @@ -12,6 +12,12 @@ Revision history for Perl extension Moose as well. There will be 2 releases, and then it will be removed. + * Moose + Moose::Role + Moose::Meta::Class + - refactored the way inner and super work to avoid + any method/@ISA cache penalty (nothingmuch) + * Moose::Meta::Class - fixing &new_object to make sure trigger gets the coerced value (spotted by Charles Alderman on the @@ -28,6 +34,11 @@ Revision history for Perl extension Moose * Moose::Meta::Method::Destructor - fix typo in initialize_body method (nothingmuch) + * Moose::Meta::Method::Overriden + Moose::Meta::Method::Augmented + - moved the logic for these into their own + classes (nothingmuch) + * Moose::Meta::Attribute - inherited attributes may now be extended without restriction on the type ('isa', 'does') (Sartak) @@ -43,7 +54,7 @@ Revision history for Perl extension Moose * Moose::Util::TypeConstraints - &find_type_constraint now DWIMs when given an - type constraint object (nothingmuch) + type constraint object or name (nothingmuch) * Moose::Meta::TypeConstraint Moose::Meta::TypeConstraint::Class @@ -64,7 +75,8 @@ Revision history for Perl extension Moose - added tests for this * Moose::Meta::TypeConstraint::Enum - - broke this out into it's own class (nothingmuch) + Moose::Meta::TypeConstraint::Role + - broke these out into their own classes (nothingmuch) * Moose::Cookbook::Recipe* - fixed references to test file locations in the POD diff --git a/lib/Moose/Meta/Method/Augmented.pm b/lib/Moose/Meta/Method/Augmented.pm index 18e43ef..0ef4d34 100644 --- a/lib/Moose/Meta/Method/Augmented.pm +++ b/lib/Moose/Meta/Method/Augmented.pm @@ -89,7 +89,7 @@ to cpan-RT. =head1 AUTHOR -Stevan Little Estevan@iinteractive.comE +Yuval Kogman Enothingmuch@cpan.orgE =head1 COPYRIGHT AND LICENSE diff --git a/lib/Moose/Meta/Method/Overriden.pm b/lib/Moose/Meta/Method/Overriden.pm index 12bae38..9ac4d95 100644 --- a/lib/Moose/Meta/Method/Overriden.pm +++ b/lib/Moose/Meta/Method/Overriden.pm @@ -78,7 +78,7 @@ to cpan-RT. =head1 AUTHOR -Stevan Little Estevan@iinteractive.comE +Yuval Kogman Enothingmuch@cpan.orgE =head1 COPYRIGHT AND LICENSE diff --git a/lib/Moose/Meta/TypeConstraint/Role.pm b/lib/Moose/Meta/TypeConstraint/Role.pm index d92e718..40239b3 100644 --- a/lib/Moose/Meta/TypeConstraint/Role.pm +++ b/lib/Moose/Meta/TypeConstraint/Role.pm @@ -7,7 +7,7 @@ use metaclass; use Scalar::Util 'blessed'; use Moose::Util::TypeConstraints (); -our $VERSION = '0.02'; +our $VERSION = '0.01'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; @@ -107,7 +107,7 @@ Moose::Meta::TypeConstraint::Role - Role/TypeConstraint parallel hierarchy =item B -=item B +=item B =item B