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
use Carp 'confess';
-our $VERSION = '0.10';
+our $VERSION = '0.11';
our $AUTHORITY = 'cpan:STEVAN';
sub new {
sub dump {
my $self = shift;
require Data::Dumper;
- $Data::Dumper::Maxdepth = shift if @_;
+ local $Data::Dumper::Maxdepth = shift if @_;
Data::Dumper::Dumper $self;
}