From: gfx Date: Mon, 8 Feb 2010 04:46:17 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.50. Changelog diff is: X-Git-Tag: 0.50^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=e9148d131f7c3d6a1e3fc9e7c491f80fb5dde90b Checking in changes prior to tagging of version 0.50. Changelog diff is: diff --git a/Changes b/Changes index 7af19be..578a93c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ Revision history for Mouse -0.49_01 +0.50 Mon Feb 8 13:43:19 2010 + * Mouse::Tiny + - Allow "use Mouse::Tiny VERSION" with a patch contributed by + chocolateboy, RT #54383 (gfx) * Mouse::Util::MetaRole - Add Mouse::Util::MetaRole::apply_metaroles to catch up the latest Moose API for metaroles (gfx) --- diff --git a/Changes b/Changes index 7af19be..578a93c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ Revision history for Mouse -0.49_01 +0.50 Mon Feb 8 13:43:19 2010 + * Mouse::Tiny + - Allow "use Mouse::Tiny VERSION" with a patch contributed by + chocolateboy, RT #54383 (gfx) * Mouse::Util::MetaRole - Add Mouse::Util::MetaRole::apply_metaroles to catch up the latest Moose API for metaroles (gfx) diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 35bb6f0..fcb9976 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.49'; +our $VERSION = '0.50'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -166,7 +166,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index e3cb85a..597f542 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -262,7 +262,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 504aa90..0624a57 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -334,7 +334,7 @@ Mouse::Meta::Attribute - The Mouse attribute metaclass =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 METHODS diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index dba5c8c..0ffd98a 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -461,7 +461,7 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 METHODS diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 7d75ab9..67b1d56 100755 --- a/lib/Mouse/Meta/Method.pm +++ b/lib/Mouse/Meta/Method.pm @@ -41,7 +41,7 @@ Mouse::Meta::Method - A Mouse Method metaclass =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index ba7adbc..dbc8b4c 100755 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -178,7 +178,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index a508be5..3302e7b 100644 --- a/lib/Mouse/Meta/Method/Constructor.pm +++ b/lib/Mouse/Meta/Method/Constructor.pm @@ -197,7 +197,7 @@ Mouse::Meta::Method::Constructor - A Mouse method generator for constructors =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index 28f1e50..97368d4 100644 --- a/lib/Mouse/Meta/Method/Delegation.pm +++ b/lib/Mouse/Meta/Method/Delegation.pm @@ -35,7 +35,7 @@ Mouse::Meta::Method::Delegation - A Mouse method generator for delegation method =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index 96ada5f..1d08ac0 100644 --- a/lib/Mouse/Meta/Method/Destructor.pm +++ b/lib/Mouse/Meta/Method/Destructor.pm @@ -53,7 +53,7 @@ Mouse::Meta::Method::Destructor - A Mouse method generator for destructors =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 25e6cb3..65f8736 100755 --- a/lib/Mouse/Meta/Module.pm +++ b/lib/Mouse/Meta/Module.pm @@ -311,7 +311,7 @@ Mouse::Meta::Module - The base class for Mouse::Meta::Class and Mouse::Meta::Rol =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index d680a54..6985dc2 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -330,7 +330,7 @@ Mouse::Meta::Role - The Mouse Role metaclass =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index 956367d..1c2eeef 100644 --- a/lib/Mouse/Meta/Role/Composite.pm +++ b/lib/Mouse/Meta/Role/Composite.pm @@ -123,7 +123,7 @@ Mouse::Meta::Role::Composite - An object to represent the set of roles =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index b552111..1bc0227 100755 --- 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.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 2593b82..7fedf82 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -216,7 +216,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 5a327fe..b335341 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -17,7 +17,7 @@ Mouse::Object - The base object for Mouse classes =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index 8abdeb9..f6c5e5b 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -664,7 +664,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 54c8e95..4f224b4 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.49'; +our $VERSION = '0.50'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -148,7 +148,7 @@ Mouse::Role - The Mouse Role =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 8ba28c4..970791c 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.49'; +our $VERSION = '0.50'; our $MouseVersion = $VERSION; our $MooseVersion = '0.93'; @@ -19,7 +19,7 @@ Mouse::Spec - To what extent Mouse is compatible with Moose =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 1ce852f..7088129 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.49 +This document describes Mouse version 0.50 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index b7ab693..f2d4457 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -38,7 +38,7 @@ BEGIN{ # Because Mouse::Util is loaded first in all the Mouse sub-modules, # XS loader is placed here, not in Mouse.pm. - our $VERSION = '0.49'; + our $VERSION = '0.50'; my $xs = !(exists $INC{'Mouse/PurePerl.pm'} || $ENV{MOUSE_PUREPERL}); @@ -363,7 +363,7 @@ Mouse::Util - Features, with or without their dependencies =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head1 IMPLEMENTATIONS FOR diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 629309c..9a188e3 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -364,7 +364,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.49 +This document describes Mouse version 0.50 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index a6ceab9..5b7583d 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.49 +This document describes Mouse version 0.50 =head1 DESCRIPTION