From: Fuji, Goro Date: Thu, 27 Jan 2011 00:22:53 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.89. X-Git-Tag: 0.89^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=5b3e7678602d122ad523a1aabc865cebff56de61 Checking in changes prior to tagging of version 0.89. Changelog diff is: diff --git a/Changes b/Changes index 65dc150..57106a8 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,13 @@ Revision history for Mouse +0.89 2011-01-27 09:18:39 + [BUG FIXES] + * Disable foreign class warnings introduced at 0.71, which affects + compatibility with Moose (and will re-introduce in more compatible + way in the future) + 0.88 2010-12-05 14:24:14 - [BUG FIX] + [BUG FIXES] * Workaround SL4A where mro.pm doesn't exist even if Perl >= 5.10.0 (reported by @hide_o_55) --- diff --git a/Changes b/Changes index 65dc150..57106a8 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,13 @@ Revision history for Mouse +0.89 2011-01-27 09:18:39 + [BUG FIXES] + * Disable foreign class warnings introduced at 0.71, which affects + compatibility with Moose (and will re-introduce in more compatible + way in the future) + 0.88 2010-12-05 14:24:14 - [BUG FIX] + [BUG FIXES] * Workaround SL4A where mro.pm doesn't exist even if Perl >= 5.10.0 (reported by @hide_o_55) diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 1dc0087..5b420c0 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.88'; +our $VERSION = '0.89'; use Carp (); use Scalar::Util (); @@ -155,7 +155,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 6b9b22b..7666742 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -267,7 +267,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 143714b..32a800e 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -342,7 +342,7 @@ Mouse::Meta::Attribute - The Mouse attribute metaclass =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index ae611ec..10f989c 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -470,7 +470,7 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index a60ea25..770a467 100644 --- a/lib/Mouse/Meta/Method.pm +++ b/lib/Mouse/Meta/Method.pm @@ -54,7 +54,7 @@ Mouse::Meta::Method - A Mouse Method metaclass =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index d643816..200f4c9 100644 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -187,7 +187,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 96ffda5..bf5cef6 100644 --- a/lib/Mouse/Meta/Method/Constructor.pm +++ b/lib/Mouse/Meta/Method/Constructor.pm @@ -232,7 +232,7 @@ Mouse::Meta::Method::Constructor - A Mouse method generator for constructors =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index 9e6e3ef..318344b 100644 --- a/lib/Mouse/Meta/Method/Delegation.pm +++ b/lib/Mouse/Meta/Method/Delegation.pm @@ -61,7 +61,7 @@ Mouse::Meta::Method::Delegation - A Mouse method generator for delegation method =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index 443104b..489d20b 100644 --- a/lib/Mouse/Meta/Method/Destructor.pm +++ b/lib/Mouse/Meta/Method/Destructor.pm @@ -65,7 +65,7 @@ Mouse::Meta::Method::Destructor - A Mouse method generator for destructors =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 62523ee..61e6c1c 100644 --- a/lib/Mouse/Meta/Module.pm +++ b/lib/Mouse/Meta/Module.pm @@ -311,7 +311,7 @@ Mouse::Meta::Module - The common base class of Mouse::Meta::Class and Mouse::Met =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index a4fdf76..013b2c6 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -131,7 +131,7 @@ Mouse::Meta::Role - The Mouse Role metaclass =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role/Application.pm b/lib/Mouse/Meta/Role/Application.pm index e078c60..923e5db 100644 --- a/lib/Mouse/Meta/Role/Application.pm +++ b/lib/Mouse/Meta/Role/Application.pm @@ -209,7 +209,7 @@ Mouse::Meta::Role::Application - The Mouse role application class =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index e2900ac..bcba3d2 100644 --- a/lib/Mouse/Meta/Role/Composite.pm +++ b/lib/Mouse/Meta/Role/Composite.pm @@ -156,7 +156,7 @@ Mouse::Meta::Role::Composite - An object to represent the set of roles =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index e5838f6..b0c3d39 100644 --- a/lib/Mouse/Meta/Role/Method.pm +++ b/lib/Mouse/Meta/Role/Method.pm @@ -23,7 +23,7 @@ Mouse::Meta::Role::Method - A Mouse Method metaclass for Roles =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 77a8706..02af771 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -276,7 +276,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 134be7a..73184d1 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -10,7 +10,7 @@ Mouse::Object - The base object for Mouse classes =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index b0656d9..0a9016f 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -749,7 +749,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index fd1a5f0..775e74c 100644 --- a/lib/Mouse/Role.pm +++ b/lib/Mouse/Role.pm @@ -1,7 +1,7 @@ package Mouse::Role; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.88'; +our $VERSION = '0.89'; use Carp (); use Scalar::Util (); @@ -137,7 +137,7 @@ Mouse::Role - The Mouse Role =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 0799270..ab2b625 100644 --- a/lib/Mouse/Spec.pm +++ b/lib/Mouse/Spec.pm @@ -2,7 +2,7 @@ package Mouse::Spec; use strict; use warnings; -our $VERSION = '0.88'; +our $VERSION = '0.89'; our $MouseVersion = $VERSION; our $MooseVersion = '1.13'; @@ -19,7 +19,7 @@ Mouse::Spec - To what extent Mouse is compatible with Moose =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index e452b63..b7b9b0f 100644 --- a/lib/Mouse/Tiny.pod +++ b/lib/Mouse/Tiny.pod @@ -5,7 +5,7 @@ Mouse::Tiny - Mouse in a single file =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index b2069c5..eeee3f3 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -50,7 +50,7 @@ BEGIN{ }, ); - our $VERSION = '0.88'; + our $VERSION = '0.89'; my $xs = !(defined(&is_valid_class_name) || $ENV{MOUSE_PUREPERL} || $ENV{PERL_ONLY}); @@ -388,7 +388,7 @@ Mouse::Util - Utilities for working with Mouse classes =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 SYNOPSIS diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 61810e5..28d1b3a 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -432,7 +432,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index f3867fc..82d41a1 100644 --- a/lib/Mouse/XS.pod +++ b/lib/Mouse/XS.pod @@ -5,7 +5,7 @@ Mouse::XS - A Mouse guts in XS =head1 VERSION -This document describes Mouse version 0.88 +This document describes Mouse version 0.89 =head1 DESCRIPTION