foo
Stevan Little [Fri, 14 Jul 2006 02:05:32 +0000 (02:05 +0000)]
Changes
lib/Class/MOP/Attribute.pm
lib/Class/MOP/Class.pm

diff --git a/Changes b/Changes
index 2c661b3..3090e7f 100644 (file)
--- 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 
index 609d673..c9d64a3 100644 (file)
@@ -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;
index 80bc7c6..612642f 100644 (file)
@@ -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';