From: Fuji, Goro Date: Sat, 13 Nov 2010 14:51:22 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.87. X-Git-Tag: 0.87^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=fd2b172a4657cb6cc47976d2e66cdba4bdfa579d;hp=f43060b65ad710abc58ab3e1f4288a71deb00ec6 Checking in changes prior to tagging of version 0.87. Changelog diff is: diff --git a/Changes b/Changes index b60d1c4..9393554 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Revision history for Mouse +0.87 2010-11-13 23:44:20 + [BUG FIXES] + * Fix packaging issues + - META.yml was not updated (reported by @shohex) + - `make realclean` should remove xshelper.h + (patched by Ingy dot Net, and modified by gfx) + + [OTHERS] + * Type coercion routines have been refactored; coercions are compiled + on demand. + 0.86 2010-11-12 20:12:53 [BUG FIXES] * Role application to instances cached anonymous classes in wrong way --- diff --git a/Changes b/Changes index b60d1c4..9393554 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Revision history for Mouse +0.87 2010-11-13 23:44:20 + [BUG FIXES] + * Fix packaging issues + - META.yml was not updated (reported by @shohex) + - `make realclean` should remove xshelper.h + (patched by Ingy dot Net, and modified by gfx) + + [OTHERS] + * Type coercion routines have been refactored; coercions are compiled + on demand. + 0.86 2010-11-12 20:12:53 [BUG FIXES] * Role application to instances cached anonymous classes in wrong way diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 337a6b5..e3786a4 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -60,3 +60,5 @@ ppport\.h$ MYMETA\.yml$ Moose-t/ +xshelper\.h$ + diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 410a6d7..4c4dc39 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.86'; +our $VERSION = '0.87'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -155,7 +155,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.86 +This document describes Mouse version 0.87 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index aae65d1..dd46f43 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.86 +This document describes Mouse version 0.87 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 213913a..85f9b78 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 9397fbe..45614f6 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -468,7 +468,7 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 82d69e5..75f4f6b 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index a78bb48..b3c50d0 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 5e86bb5..56f6396 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index 8756210..b0c23c6 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index e940cfc..c69d00b 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 99be1f3..540d329 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index 93a8e6b..5269cb3 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role/Application.pm b/lib/Mouse/Meta/Role/Application.pm index 8c24668..21b5818 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index f17b39d..045d4c6 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 1733e95..d7bf761 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 395ea78..48ec844 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 17e408d..2dab1c3 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.86 +This document describes Mouse version 0.87 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index 0e5ed43..9f21d59 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.86 +This document describes Mouse version 0.87 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 62decb8..36017af 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.86'; +our $VERSION = '0.87'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -137,7 +137,7 @@ Mouse::Role - The Mouse Role =head1 VERSION -This document describes Mouse version 0.86 +This document describes Mouse version 0.87 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 8b7f15c..f89ddbb 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.86'; +our $VERSION = '0.87'; 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.86 +This document describes Mouse version 0.87 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 0054344..2a27eae 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index c6b584a..e3999c3 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -48,7 +48,7 @@ BEGIN{ }, ); - our $VERSION = '0.86'; + our $VERSION = '0.87'; 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.86 +This document describes Mouse version 0.87 =head1 SYNOPSIS diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 2e9eaac..0fa8ab3 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.86 +This document describes Mouse version 0.87 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index 1a4d630..e45c4d3 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.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION