X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse.pm;h=b5b0211cd92cdf59818fc60385310e7b6a3bf3f7;hb=d88885bd5e3963a3e420bc6dd5541fc91a60a194;hp=3156cc5dd10f2da1e58cc59bf583ca3737699294;hpb=806806614368604f49f5e27bf64d1b8d96241177;p=gitmo%2FMouse.git diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 3156cc5..b5b0211 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_07'; +our $VERSION = '0.64'; 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_07 +This document describes Mouse version 0.64 =head1 SYNOPSIS @@ -400,22 +400,6 @@ You may use L to replace the superclass list. Please unimport Mouse (C) so that if someone calls one of the keywords (such as L) it will break loudly instead breaking subtly. -=head1 CAVEATS - -If you use Mouse::XS you might see a fatal error on callbacks -which include C, which typically occurs in such code -as C. This is not -a bug in Mouse. In fact, it is a bug in Perl (RT #69939). - -To work around this problem, surround C with C: - - sub callback { - # eval 'use NotInstalledModule'; # NG - eval{ eval 'use NotInstalledModule' }; # OK - } - -It seems ridiculous, but it works as you expected. - =head1 SOURCE CODE ACCESS We have a public git repository: