changes in Moose::Object
Stevan Little [Fri, 22 Feb 2008 21:49:11 +0000 (21:49 +0000)]
Changes
lib/Moose/Object.pm

diff --git a/Changes b/Changes
index e4fe4a2..fb9fba6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -8,6 +8,10 @@ Revision history for Perl extension Moose
         have slightly better support for AUTOLOADed 
         objects
         - added more delegation tests
+    
+    * Moose::Object
+      - localizing the Data::Dumper configurations so 
+        that it does not pollute others (RT #33509)
 
 0.38 Fri. Feb. 15, 2008
     * Moose::Meta::Attribute 
index 58af227..b5fb037 100644 (file)
@@ -9,7 +9,7 @@ use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class';
 
 use Carp 'confess';
 
-our $VERSION   = '0.10';
+our $VERSION   = '0.11';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new {
@@ -80,7 +80,7 @@ sub does {
 sub dump { 
     my $self = shift;
     require Data::Dumper;
-    $Data::Dumper::Maxdepth = shift if @_;
+    local $Data::Dumper::Maxdepth = shift if @_;
     Data::Dumper::Dumper $self;
 }