X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse.pm;h=d3b1d569e61cc94220c35beeb37df101e336b331;hp=1923e96b86864c1d111ad73ce8f52edca731b8be;hb=d990f7911dfd6a36d1dcc072e7adb72bf0379349;hpb=05a12aa45fbcd22111d4f5dde2736c8361540198 diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 1923e96..d3b1d56 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -3,7 +3,7 @@ use 5.006_002; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.50_01'; +our $VERSION = '0.50_02'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -160,7 +160,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.50_01 +This document describes Mouse version 0.50_02 =head1 SYNOPSIS @@ -176,6 +176,9 @@ This document describes Mouse version 0.50_01 $self->y(0); } + + __PACKAGE__->meta->make_immutable(); + package Point3D; use Mouse; @@ -188,6 +191,8 @@ This document describes Mouse version 0.50_01 $self->z(0); }; + __PACKAGE__->meta->make_immutable(); + =head1 DESCRIPTION L is wonderful. B