X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse.pm;h=22827e57a0a6cfb5720ad50c03586ef4ad85740e;hp=a170114960b4b8e2d0bbbc6ff5aae5a73eb49f78;hb=7fa0bc1b549deaa7f089c75b491877ed552f4f53;hpb=b0b9f25a58185affc1f7a005929bf6b3f8770160 diff --git a/lib/Mouse.pm b/lib/Mouse.pm index a170114..22827e5 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'; +our $VERSION = '0.50_01'; 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 +This document describes Mouse version 0.50_01 =head1 SYNOPSIS @@ -176,6 +176,9 @@ This document describes Mouse version 0.50 $self->y(0); } + + __PACKAGE__->meta->make_immutable(); + package Point3D; use Mouse; @@ -188,6 +191,8 @@ This document describes Mouse version 0.50 $self->z(0); }; + __PACKAGE__->meta->make_immutable(); + =head1 DESCRIPTION L is wonderful. B