fixed demolish calls
Stevan Little [Thu, 31 Jan 2008 17:48:57 +0000 (17:48 +0000)]
Changes
lib/Moose/Meta/Method/Destructor.pm

diff --git a/Changes b/Changes
index 07d6d75..9b2ff91 100644 (file)
--- a/Changes
+++ b/Changes
@@ -9,17 +9,21 @@ Revision history for Perl extension Moose
     * Moose::Meta::Class
       Moose::Meta::Method::Constructor
       Moose::Meta::Attribute        
-        - making (init_arg => undef) work here too
-          (thanks to nothingmuch)
+      - making (init_arg => undef) work here too
+        (thanks to nothingmuch)
     
     * Moose::Util::TypeConstraints
       Moose::Util::TypeConstraints::OptimizedConstraints
       Moose::Meta::Attribute
       Moose::Meta::Method::Constructor
       Moose::Meta::Method::Accessor            
-        - making type errors use the 
-          assigned message (thanks to Sartak)
-          - added tests for this
+      - making type errors use the 
+        assigned message (thanks to Sartak)
+        - added tests for this
+
+    * Moose::Meta::Method::Destructor
+      - making sure DESTROY gets inlined properly 
+        with successive DEMOLISH calls (thanks to manito)
 
 0.36 Sat. Jan. 26, 2008
     * Moose::Role
index 09db416..2e98191 100644 (file)
@@ -7,7 +7,7 @@ use warnings;
 use Carp         'confess';
 use Scalar::Util 'blessed', 'weaken';
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 use base 'Moose::Meta::Method',