From: gfx Date: Sat, 5 Dec 2009 06:08:18 +0000 (+0900) Subject: Checking in changes prior to tagging of version 0.41. Changelog diff is: X-Git-Tag: 0.41^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=4c0fe06fa87e7c2c4ed1666e77ed52ae020f19d7 Checking in changes prior to tagging of version 0.41. Changelog diff is: diff --git a/Changes b/Changes index 1902f22..3df5bfb 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,17 @@ Revision history for Mouse -0.41 +0.41 Sat Dec 5 15:00:33 2009 * This is the first stable version of Mouse::XS + - Mouse::XS is about 2 times faster than Mouse::PurePerl - * SUMMARY from 0.40 to 0.40_09 + * SUMMARY - Many stuff are now in XS + - Support "use Mouse -traits => ..." subdirective + + * INCOMPATIBILITY CHANGES (but compatible with Moose) + - The type of default value is constrained correctly + - The default values is weakend correctly + - BUILDALL/DEMOLISHALL are no longer called 0.40_09 Thu Dec 3 13:42:17 2009 * Mouse --- diff --git a/Changes b/Changes index 1902f22..3df5bfb 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,17 @@ Revision history for Mouse -0.41 +0.41 Sat Dec 5 15:00:33 2009 * This is the first stable version of Mouse::XS + - Mouse::XS is about 2 times faster than Mouse::PurePerl - * SUMMARY from 0.40 to 0.40_09 + * SUMMARY - Many stuff are now in XS + - Support "use Mouse -traits => ..." subdirective + + * INCOMPATIBILITY CHANGES (but compatible with Moose) + - The type of default value is constrained correctly + - The default values is weakend correctly + - BUILDALL/DEMOLISHALL are no longer called 0.40_09 Thu Dec 3 13:42:17 2009 * Mouse diff --git a/Makefile.PL b/Makefile.PL index 994104e..b8519a4 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,10 +27,10 @@ if($] < 5.010) { require 'lib/Mouse/Spec.pm'; # for the version -if(Mouse::Spec->MouseVersion =~ /_/){ # DEVEL RELEASE - require Carp::Always; Carp::Always->import(); - include_deps 'Carp::Always'; -} +#if(Mouse::Spec->MouseVersion =~ /_/){ # DEVEL RELEASE +# require Carp::Always; Carp::Always->import(); +# include_deps 'Carp::Always'; +#} my $use_xs; diff --git a/lib/Mouse.pm b/lib/Mouse.pm index aac0782..58fe4dd 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.40_09'; +our $VERSION = '0.41'; 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.40_09 +This document describes Mouse version 0.41 =head1 SYNOPSIS diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index b1f4f91..e21a029 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -261,7 +261,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 SYNOPSIS diff --git a/lib/Mouse/Meta/Attribute.pm b/lib/Mouse/Meta/Attribute.pm index 5490362..de9fd03 100644 --- a/lib/Mouse/Meta/Attribute.pm +++ b/lib/Mouse/Meta/Attribute.pm @@ -431,7 +431,7 @@ Mouse::Meta::Attribute - The Mouse attribute metaclass =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 METHODS diff --git a/lib/Mouse/Meta/Class.pm b/lib/Mouse/Meta/Class.pm index b72415e..711837a 100644 --- a/lib/Mouse/Meta/Class.pm +++ b/lib/Mouse/Meta/Class.pm @@ -458,7 +458,7 @@ Mouse::Meta::Class - The Mouse class metaclass =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 METHODS diff --git a/lib/Mouse/Meta/Method.pm b/lib/Mouse/Meta/Method.pm index 68b1a8f..911dfde 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Accessor.pm b/lib/Mouse/Meta/Method/Accessor.pm index 0fc2536..d727650 100755 --- a/lib/Mouse/Meta/Method/Accessor.pm +++ b/lib/Mouse/Meta/Method/Accessor.pm @@ -176,7 +176,7 @@ Mouse::Meta::Method::Accessor - A Mouse method generator for accessors =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Constructor.pm b/lib/Mouse/Meta/Method/Constructor.pm index 6a78407..fbb61d0 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Delegation.pm b/lib/Mouse/Meta/Method/Delegation.pm index e100c94..ea86381 100644 --- a/lib/Mouse/Meta/Method/Delegation.pm +++ b/lib/Mouse/Meta/Method/Delegation.pm @@ -34,7 +34,7 @@ Mouse::Meta::Method::Delegation - A Mouse method generator for delegation method =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Method/Destructor.pm b/lib/Mouse/Meta/Method/Destructor.pm index 484a957..72de160 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Module.pm b/lib/Mouse/Meta/Module.pm index 4805b93..db89b97 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index d3ae40f..df4edba 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Composite.pm b/lib/Mouse/Meta/Role/Composite.pm index 2aaa893..78eb334 100644 --- a/lib/Mouse/Meta/Role/Composite.pm +++ b/lib/Mouse/Meta/Role/Composite.pm @@ -120,7 +120,7 @@ Mouse::Meta::Role::Composite - An object to represent the set of roles =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/Role/Method.pm b/lib/Mouse/Meta/Role/Method.pm index 96727b9..046d2fa 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.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index c0c425e..2adadc4 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -210,7 +210,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 DESCRIPTION diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 67f420a..7582c1c 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -47,7 +47,7 @@ Mouse::Object - The base object for Mouse classes =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 METHODS diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index b3cfe04..72dcb36 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -568,7 +568,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 SEE ALSO diff --git a/lib/Mouse/Role.pm b/lib/Mouse/Role.pm index f36a3c3..9717fda 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.40_09'; +our $VERSION = '0.41'; 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.40_09 +This document describes Mouse version 0.41 =head1 SYNOPSIS diff --git a/lib/Mouse/Spec.pm b/lib/Mouse/Spec.pm index 80ad77d..2deb32e 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.40_09'; +our $VERSION = '0.41'; 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.40_09 +This document describes Mouse version 0.41 =head1 SYNOPSIS diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index acac4dd..1355aa7 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.40_09'; + our $VERSION = '0.41'; my $xs = !(exists $INC{'Mouse/PurePerl.pm'} || $ENV{MOUSE_PUREPERL}); @@ -344,7 +344,7 @@ Mouse::Util - Features, with or without their dependencies =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head1 IMPLEMENTATIONS FOR diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index b51d9fb..294c68e 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -350,7 +350,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.41 =head2 SYNOPSIS diff --git a/lib/Mouse/XS.pod b/lib/Mouse/XS.pod index 32cadfe..95eb54e 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.40_09 +This document describes Mouse version 0.41 =head1 DESCRIPTION