From: Stevan Little Date: Fri, 14 Jul 2006 02:05:32 +0000 (+0000) Subject: foo X-Git-Tag: 0_33~14 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b679e6443bf91fa79480428a5fae9c11624593fd;p=gitmo%2FClass-MOP.git foo --- diff --git a/Changes b/Changes index 2c661b3..3090e7f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ Revision history for Perl extension Class-MOP. +0.31 + * Class::MOP::Class + - added &find_method_by_name to locate a method + anywhere within the class hierarchy + + * Class::MOP::Attribute + - added &set_value and &get_value for getting + the value of the attribute for a particular + instance. + 0.30 Wed. July 5, 2006 --------------------------------------- This is the first version of Class::MOP diff --git a/lib/Class/MOP/Attribute.pm b/lib/Class/MOP/Attribute.pm index 609d673..c9d64a3 100644 --- a/lib/Class/MOP/Attribute.pm +++ b/lib/Class/MOP/Attribute.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'reftype', 'weaken'; -our $VERSION = '0.09'; +our $VERSION = '0.10'; sub meta { require Class::MOP::Class; diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index 80bc7c6..612642f 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -9,7 +9,7 @@ use Scalar::Util 'blessed', 'reftype', 'weaken'; use Sub::Name 'subname'; use B 'svref_2object'; -our $VERSION = '0.15'; +our $VERSION = '0.16'; use base 'Class::MOP::Module';