From: gfx Date: Mon, 15 Mar 2010 06:33:12 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.51. Changelog diff is: X-Git-Tag: 0.51^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1f6046f098167a6bc7699ad8d844d1b72c49f634;hp=1a3ecabc7c07dec487e93b92c434577052790ca2;p=gitmo%2FMouse.git Checking in changes prior to tagging of version 0.51. Changelog diff is: diff --git a/Changes b/Changes index 1772240..dea4848 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,24 @@ Revision history for Mouse -0.50_09 +0.51 Mon Mar 15 15:25:58 2010 + SUMMARY + + [BUG FIXES] + * Mouse::Object::DESTROY could cause SEGVs + * Attribute triggers could cause panics + * Integers > 2**32 ware not groked as Int + * Incorrect types, e.g. "Array[Int", was accepted + * Metaclass compatibility was sometimes ignored + + [MOOSE COMPATIBILITY] + * before/around/after accept regular expressions + * has() becomes strict + * the global destruction flag is passed to DEMOLISH methods + * Delegations can be curried + * Built-in type constraints have the same hierarchy as Moose's + + +0.50_09 Mon Mar 15 12:02:28 2010 * (re)fix RT #55048 to grok 2**46+0.5 as Int, but accept 2**46 as Int even on 32 bit environments; note that an Int is exactly what is matched to /^[+-]?[0-9]+$/, --- diff --git a/Changes b/Changes index 1772240..dea4848 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,24 @@ Revision history for Mouse -0.50_09 +0.51 Mon Mar 15 15:25:58 2010 + SUMMARY + + [BUG FIXES] + * Mouse::Object::DESTROY could cause SEGVs + * Attribute triggers could cause panics + * Integers > 2**32 ware not groked as Int + * Incorrect types, e.g. "Array[Int", was accepted + * Metaclass compatibility was sometimes ignored + + [MOOSE COMPATIBILITY] + * before/around/after accept regular expressions + * has() becomes strict + * the global destruction flag is passed to DEMOLISH methods + * Delegations can be curried + * Built-in type constraints have the same hierarchy as Moose's + + +0.50_09 Mon Mar 15 12:02:28 2010 * (re)fix RT #55048 to grok 2**46+0.5 as Int, but accept 2**46 as Int even on 32 bit environments; note that an Int is exactly what is matched to /^[+-]?[0-9]+$/, diff --git a/lib/Mouse.pm b/lib/Mouse.pm index 8a24c2e..0d6aa8b 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_09'; +our $VERSION = '0.51'; 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_09 +This document describes Mouse version 0.51 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 944e238..5c10521 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -272,7 +272,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 2af892c..0c530fb 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -401,7 +401,7 @@ Mouse::Meta::Attribute - The Mouse attribute metaclass =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 METHODS diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index 24f17e0..f813660 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_09 +This document describes Mouse version 0.51 =head1 METHODS diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index ac5a26f..602c8a6 100755 --- 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.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index 4bfc6b9..5cca92e 100755 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -182,7 +182,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 8acd1b5..8c15df9 100644 --- a/lib/Mouse/Meta/Method/Constructor.pm +++ b/lib/Mouse/Meta/Method/Constructor.pm @@ -235,7 +235,7 @@ Mouse::Meta::Method::Constructor - A Mouse method generator for constructors =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index cf0a506..5d8551c 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_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index c0fcbda..d66423d 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_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 9ff3754..3dab2b6 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_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index 5f16cf5..785889a 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -312,7 +312,7 @@ Mouse::Meta::Role - The Mouse Role metaclass =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index cf6e124..38f4592 100644 --- a/lib/Mouse/Meta/Role/Composite.pm +++ b/lib/Mouse/Meta/Role/Composite.pm @@ -125,7 +125,7 @@ Mouse::Meta::Role::Composite - An object to represent the set of roles =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 2548e4c..d484684 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_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index 82c60a7..e51a948 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_09 +This document describes Mouse version 0.51 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 2a12cbe..ac79c23 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_09 +This document describes Mouse version 0.51 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index ac261cb..e4efb41 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -714,7 +714,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index 0111f73..33abf1a 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_09'; +our $VERSION = '0.51'; 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_09 +This document describes Mouse version 0.51 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 835eb29..bbc5094 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_09'; +our $VERSION = '0.51'; 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_09 +This document describes Mouse version 0.51 =head1 SYNOPSIS diff --git a/lib/Mouse/Tiny.pod b/lib/Mouse/Tiny.pod index 1304ef8..46da3d4 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_09 +This document describes Mouse version 0.51 =head1 DESCRIPTION diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 7c1e274..d3057ce 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -52,7 +52,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_09'; + our $VERSION = '0.51'; my $xs = !(exists $INC{'Mouse/PurePerl.pm'} || $ENV{MOUSE_PUREPERL}); @@ -366,7 +366,7 @@ Mouse::Util - Features, with or without their dependencies =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head1 IMPLEMENTATIONS FOR diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index 966eb0e..8556c4f 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -406,7 +406,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.50_09 +This document describes Mouse version 0.51 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index 5dd3367..4847d54 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_09 +This document describes Mouse version 0.51 =head1 DESCRIPTION