bump version so Moose has something to depend on
[gitmo/Class-MOP.git] / lib / Class / MOP / Immutable.pm
index 0231dc1..b050685 100644 (file)
@@ -9,7 +9,7 @@ use Class::MOP::Method::Constructor;
 use Carp         'confess';
 use Scalar::Util 'blessed';
 
-our $VERSION   = '0.78';
+our $VERSION   = '0.78_02';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -141,8 +141,6 @@ sub _inline_destructor {
         name         => 'DESTROY'
     );
 
-    return unless $destructor->is_needed;
-
     $self->metaclass->add_method( 'DESTROY' => $destructor );
 }
 
@@ -502,6 +500,14 @@ transformation process.
 If the constructor was inlined, this returns the constructor method
 object that was created to do this.
 
+=item B<< $transformer->make_metaclass_immutable >>
+
+Makes the transformer's metaclass immutable.
+
+=item B<< $transformer->make_metaclass_mutable >>
+
+Makes the transformer's metaclass mutable.
+
 =back
 
 =head1 AUTHORS