From: gfx Date: Mon, 1 Mar 2010 02:19:35 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.50_05. Changelog diff is: X-Git-Tag: 0.50_05^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=98a8fd12ede46b22edc10d229680d9d2e8deeade Checking in changes prior to tagging of version 0.50_05. Changelog diff is: diff --git a/Changes b/Changes index e75c32c..599e4ce 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,13 @@ Revision history for Mouse -0.50_05 Sat Feb 27 20:37:15 2010 - * Moose::Util::TypeConstraints - - Moose used an incorrect cast at the C-level which meant that +0.50_05 Mon Mar 1 11:18:26 2010 + * Mouse::Util::TypeConstraints + - Mouse used an incorrect cast at the C-level which meant that its idea of numbers was different from that of Perl's (and - Moose's). Notably > 2**32 Integers on 32 bit systems didn't - work. + Mouse's). Notably > 2**32 Integers on 32 bit systems didn't + work (AEvar). + * Mouse::Meta::Classs + - Fix an issue on metaclass compatibility (gfx) 0.50_04 Fri Feb 26 18:57:24 2010 * All --- diff --git a/Changes b/Changes index e75c32c..599e4ce 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,13 @@ Revision history for Mouse -0.50_05 Sat Feb 27 20:37:15 2010 - * Moose::Util::TypeConstraints - - Moose used an incorrect cast at the C-level which meant that +0.50_05 Mon Mar 1 11:18:26 2010 + * Mouse::Util::TypeConstraints + - Mouse used an incorrect cast at the C-level which meant that its idea of numbers was different from that of Perl's (and - Moose's). Notably > 2**32 Integers on 32 bit systems didn't - work. + Mouse's). Notably > 2**32 Integers on 32 bit systems didn't + work (AEvar). + * Mouse::Meta::Classs + - Fix an issue on metaclass compatibility (gfx) 0.50_04 Fri Feb 26 18:57:24 2010 * All diff --git a/lib/Mouse.pm b/lib/Mouse.pm index b97cf1e..6dcd97a 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.50_04'; +our $VERSION = '0.50_05'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -160,7 +160,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 4635654..19ed858 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -264,7 +264,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index a9345af..d07211d 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -395,7 +395,7 @@ Mouse::Meta::Attribute - The Mouse attribute metaclass =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 METHODS diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 58377e9..3dbf300 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -486,7 +486,7 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 METHODS diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index f1eba0a..71b875d 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.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index 667f2ea..49ec54c 100755 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -179,7 +179,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 22acc34..0d5374a 100644 --- a/lib/Mouse/Meta/Method/Constructor.pm +++ b/lib/Mouse/Meta/Method/Constructor.pm @@ -267,7 +267,7 @@ Mouse::Meta::Method::Constructor - A Mouse method generator for constructors =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index 943bdc5..851280a 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.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index 0ded367..76b956f 100644 --- a/lib/Mouse/Meta/Method/Destructor.pm +++ b/lib/Mouse/Meta/Method/Destructor.pm @@ -55,7 +55,7 @@ Mouse::Meta::Method::Destructor - A Mouse method generator for destructors =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index cd866ee..b193932 100755 --- a/lib/Mouse/Meta/Module.pm +++ b/lib/Mouse/Meta/Module.pm @@ -323,7 +323,7 @@ Mouse::Meta::Module - The base class for Mouse::Meta::Class and Mouse::Meta::Rol =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index aab9d87..b2d4aae 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -308,7 +308,7 @@ Mouse::Meta::Role - The Mouse Role metaclass =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index 05f436e..0e64333 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.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 3802b15..2cd7376 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.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index c61c154..d40d802 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -235,7 +235,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 3edc735..5c37b18 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.50_04 +This document describes Mouse version 0.50_05 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index b186f20..b1e652f 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -708,7 +708,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 8a68ad6..bb350c2 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.50_04'; +our $VERSION = '0.50_05'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -145,7 +145,7 @@ Mouse::Role - The Mouse Role =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 2d53c9b..649ef04 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.50_04'; +our $VERSION = '0.50_05'; 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.50_04 +This document describes Mouse version 0.50_05 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 8a5349e..e217130 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.50_04 +This document describes Mouse version 0.50_05 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index ccf8812..ba184e1 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -50,7 +50,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.50_04'; + our $VERSION = '0.50_05'; my $xs = !(exists $INC{'Mouse/PurePerl.pm'} || $ENV{MOUSE_PUREPERL}); @@ -364,7 +364,7 @@ Mouse::Util - Features, with or without their dependencies =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head1 IMPLEMENTATIONS FOR diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index d06122d..de19ede 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -391,7 +391,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.50_04 +This document describes Mouse version 0.50_05 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index d5eb85e..a942d78 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.50_04 +This document describes Mouse version 0.50_05 =head1 DESCRIPTION