Checking in changes prior to tagging of version 0.70.
[gitmo/Mouse.git] / lib / Mouse / Spec.pm
index acee720..d9bd70f 100644 (file)
@@ -2,7 +2,7 @@ package Mouse::Spec;
 use strict;
 use warnings;
 
-our $VERSION = '0.67';
+our $VERSION = '0.70';
 
 our $MouseVersion = $VERSION;
 our $MooseVersion = '1.10';
@@ -19,7 +19,7 @@ Mouse::Spec - To what extent Mouse is compatible with Moose
 
 =head1 VERSION
 
-This document describes Mouse version 0.67
+This document describes Mouse version 0.70
 
 =head1 SYNOPSIS
 
@@ -35,10 +35,10 @@ compatible (and incompatible) with Moose.
 
 =head2 Compatibility with Moose
 
-The sugary API is highly compatible with Moose. Methods which have the
-same name as Moose's are expected to be compatible with Moose's.
+=head3 Sugary APIs
 
-=head2 Incompatibility with Moose
+The sugary APIs are highly compatible with Moose. Methods which have the
+same name as Moose's are expected to be compatible with Moose's.
 
 =head3 Meta object protocols
 
@@ -47,7 +47,8 @@ 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, meta object protocols in Mouse have no attributes by default,
+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<Don not make metaclasses immutable>.