From: Fuji, Goro Date: Thu, 28 Oct 2010 12:51:56 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.81. X-Git-Tag: 0.81^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Ftags%2F0.81;hp=0d8640df33c576d6d331c5ae0106a11805372552;p=gitmo%2FMouse.git Checking in changes prior to tagging of version 0.81. Changelog diff is: diff --git a/Changes b/Changes index 35d6284..0c3722a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Mouse +0.81 2010-10-28 21:49:40 + [BUG FIXES] + * Roles which attributes has no methods could affect cache invalidation + 0.80 Wed Oct 6 00:15:49 2010 [BUG FIXES] * Resolve RT #61906 (Syohei Yoshida): A single 'accessor' did --- diff --git a/Changes b/Changes index 35d6284..0c3722a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Mouse +0.81 2010-10-28 21:49:40 + [BUG FIXES] + * Roles which attributes has no methods could affect cache invalidation + 0.80 Wed Oct 6 00:15:49 2010 [BUG FIXES] * Resolve RT #61906 (Syohei Yoshida): A single 'accessor' did diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 7fca684..be0b0a3 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.80'; +our $VERSION = '0.81'; 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.80 +This document describes Mouse version 0.81 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 8561936..760507d 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.80 +This document describes Mouse version 0.81 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index eb8f1d7..c6e85b7 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 20b2181..3f22bf7 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 8ddb72e..6a63bb3 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index 45f33a4..38a2d87 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index a5be3cc..2628a96 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index a9ee3d8..eb0034e 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index eae08df..b8801f9 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index c575268..3efaf1e 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index 47c1ad6..cd1b45e 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Meta/Role/Application.pm b/lib/Mouse/Meta/Role/Application.pm index aa42325..02a418c 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index bd333f9..6d36781 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 39aba1d..1c80506 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 70473a2..284e9cc 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -237,7 +237,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 56f671b..25ed40f 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.80 +This document describes Mouse version 0.81 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index c0ec9a6..eb7385b 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.80 +This document describes Mouse version 0.81 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 8f97345..b9b3617 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.80'; +our $VERSION = '0.81'; 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.80 +This document describes Mouse version 0.81 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 9b67983..9ea5744 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.80'; +our $VERSION = '0.81'; 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.80 +This document describes Mouse version 0.81 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 5b975e9..58f4a4f 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 8d7e078..2d292bf 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -48,7 +48,7 @@ BEGIN{ }, ); - our $VERSION = '0.80'; + our $VERSION = '0.81'; 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.80 +This document describes Mouse version 0.81 =head1 SYNOPSIS diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 07c9f7a..25ac234 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.80 +This document describes Mouse version 0.81 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index a9a1724..fa98769 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.80 +This document describes Mouse version 0.81 =head1 DESCRIPTION