update Changes and make version 0.69_01
[gitmo/Class-MOP.git] / lib / Class / MOP / Method.pm
index 729d0aa..cff2144 100644 (file)
@@ -7,7 +7,7 @@ use warnings;
 use Carp         'confess';
 use Scalar::Util 'weaken';
 
-our $VERSION   = '0.65';
+our $VERSION   = '0.69_01';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -209,16 +209,27 @@ object, this returns the object that was cloned.
 This returns the original name of the CODE reference, wherever it was
 first defined.
 
+If this method is a clone of a clone (of a clone, etc.), this method
+returns the name from the I<first> method in the chain of clones.
+
 =item B<original_package_name>
 
 This returns the original package name that the CODE reference is
 attached to, wherever it was first defined.
 
+If this method is a clone of a clone (of a clone, etc.), this method
+returns the package name from the I<first> method in the chain of
+clones.
+
 =item B<original_fully_qualified_name>
 
 This returns the original fully qualified name of the CODE reference,
 wherever it was first defined.
 
+If this method is a clone of a clone (of a clone, etc.), this method
+returns the fully qualified name from the I<first> method in the chain
+of clones.
+
 =back
 
 =head2 Metaclass