X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FSpec.pm;h=f4ebf32390f9ed7ea505fa6e5c42695716894083;hb=6336eb18ec59cf5c9c057624c7a1d15f449b00c6;hp=2def9fafbec7825444fc8c2fa087227bfdb8a206;hpb=825f7cdadcd71fb73aa7f6fa7c29b4f2d0c25366;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 2def9fa..f4ebf32 100644 --- a/lib/Mouse/Spec.pm +++ b/lib/Mouse/Spec.pm @@ -2,10 +2,10 @@ package Mouse::Spec; use strict; use warnings; -our $VERSION = '0.74'; +our $VERSION = '0.93'; our $MouseVersion = $VERSION; -our $MooseVersion = '1.10'; +our $MooseVersion = '1.13'; sub MouseVersion{ $MouseVersion } sub MooseVersion{ $MooseVersion } @@ -19,7 +19,7 @@ Mouse::Spec - To what extent Mouse is compatible with Moose =head1 VERSION -This document describes Mouse version 0.74 +This document describes Mouse version 0.93 =head1 SYNOPSIS @@ -47,14 +47,15 @@ Their methods which have the same name as Moose's are expected to be compatible with Moose's. Feel free to use these methods even if they are not documented. -However, there are differences between Moose's MOP and Mouse's, +However, there are differences between Moose's MOP and Mouse's. For example, meta object protocols in Mouse have no attributes by default, so C<< $metaclass->meta->make_immutable() >> will not work as you expect. B. =head3 Mouse::Meta::Instance -Meta instance mechanism is not implemented. +Meta instance mechanism is not implemented, so you cannot change the reftype +of Mouse objects in the same way as Moose. =head3 Role exclusion