From: Fuji, Goro Date: Fri, 5 Nov 2010 09:15:48 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.82. X-Git-Tag: 0.82^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=999072aba606906b12c2f18e0ebde72e224de4dc Checking in changes prior to tagging of version 0.82. Changelog diff is: diff --git a/Changes b/Changes index 0c3722a..526c2df 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Mouse +0.82 2010-11-05 18:12:28 + [BUG FIXES] + * Wrong name for a method in Mouse::Meta::TypeConstraint: + s/is_a_subtype_of/is_a_type_of/ + * $type_constraint->type_parameter didn't return the correct value + if it's a subtype of paramterized type constraints + 0.81 2010-10-28 21:49:40 [BUG FIXES] * Roles which attributes has no methods could affect cache invalidation --- diff --git a/Changes b/Changes index 0c3722a..526c2df 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Mouse +0.82 2010-11-05 18:12:28 + [BUG FIXES] + * Wrong name for a method in Mouse::Meta::TypeConstraint: + s/is_a_subtype_of/is_a_type_of/ + * $type_constraint->type_parameter didn't return the correct value + if it's a subtype of paramterized type constraints + 0.81 2010-10-28 21:49:40 [BUG FIXES] * Roles which attributes has no methods could affect cache invalidation diff --git a/lib/Mouse.pm b/lib/Mouse.pm index be0b0a3..43a5e0f 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.81'; +our $VERSION = '0.82'; 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.81 +This document describes Mouse version 0.82 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 760507d..3282dbc 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -268,7 +268,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index c6e85b7..daeb0ec 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 3f22bf7..4f5a6b8 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 6a63bb3..7b6ebe6 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index 38a2d87..6e4d402 100644 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -183,7 +183,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 2628a96..94acd0d 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.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index eb0034e..9ba25ba 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.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index b8801f9..220151a 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.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 3efaf1e..d6ce931 100644 --- a/lib/Mouse/Meta/Module.pm +++ b/lib/Mouse/Meta/Module.pm @@ -315,7 +315,7 @@ Mouse::Meta::Module - The common base class of Mouse::Meta::Class and Mouse::Met =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index cd1b45e..c9a1f97 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role/Application.pm b/lib/Mouse/Meta/Role/Application.pm index 02a418c..60b5bdb 100644 --- a/lib/Mouse/Meta/Role/Application.pm +++ b/lib/Mouse/Meta/Role/Application.pm @@ -206,7 +206,7 @@ Mouse::Meta::Role::Application - The Mouse role application class =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index 6d36781..57a86cd 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.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 1c80506..efda064 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.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 7b58d16..c9f5b11 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -260,7 +260,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 25ed40f..8927fb5 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.81 +This document describes Mouse version 0.82 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index eb7385b..e671913 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -750,7 +750,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index b9b3617..eef001b 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.81'; +our $VERSION = '0.82'; 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.81 +This document describes Mouse version 0.82 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 9ea5744..e388737 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.81'; +our $VERSION = '0.82'; 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.81 +This document describes Mouse version 0.82 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 58f4a4f..888bd37 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 2d292bf..5ee5990 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -48,7 +48,7 @@ BEGIN{ }, ); - our $VERSION = '0.81'; + our $VERSION = '0.82'; 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.81 +This document describes Mouse version 0.82 =head1 SYNOPSIS diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 25ac234..6251719 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -427,7 +427,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.81 +This document describes Mouse version 0.82 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index fa98769..844d526 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.81 +This document describes Mouse version 0.82 =head1 DESCRIPTION