From: Stevan Little Date: Thu, 3 Jul 2008 21:24:31 +0000 (+0000) Subject: 0.55 setup X-Git-Tag: 0_55~53 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=93cc8330c689c1eb92171550e5fabb628a8759a6;p=gitmo%2FMoose.git 0.55 setup --- diff --git a/Changes b/Changes index 237a065..5ccfd3a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Perl extension Moose +0.54 + 0.53 Thurs. July 3, 2008 * Whoops, I guess I should run 'make manifest' before actually releasing the module. No actual changes diff --git a/README b/README index b92b86d..f517672 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.53 +Moose version 0.54 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index 59ec34c..766a346 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -4,7 +4,7 @@ package Moose; use strict; use warnings; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util 'blessed'; diff --git a/lib/Moose/Meta/Attribute.pm b/lib/Moose/Meta/Attribute.pm index 735ef29..155f9a0 100644 --- a/lib/Moose/Meta/Attribute.pm +++ b/lib/Moose/Meta/Attribute.pm @@ -8,7 +8,7 @@ use Scalar::Util 'blessed', 'weaken'; use Carp 'confess'; use overload (); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Method::Accessor; diff --git a/lib/Moose/Meta/Class.pm b/lib/Moose/Meta/Class.pm index 0bf3336..89ad5ad 100644 --- a/lib/Moose/Meta/Class.pm +++ b/lib/Moose/Meta/Class.pm @@ -9,7 +9,7 @@ use Class::MOP; use Carp 'confess'; use Scalar::Util 'weaken', 'blessed'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Method::Overriden; diff --git a/lib/Moose/Meta/Instance.pm b/lib/Moose/Meta/Instance.pm index 78552b9..0258e3f 100644 --- a/lib/Moose/Meta/Instance.pm +++ b/lib/Moose/Meta/Instance.pm @@ -4,7 +4,7 @@ package Moose::Meta::Instance; use strict; use warnings; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base "Class::MOP::Instance"; diff --git a/lib/Moose/Meta/Method.pm b/lib/Moose/Meta/Method.pm index 37562cd..a3603fc 100644 --- a/lib/Moose/Meta/Method.pm +++ b/lib/Moose/Meta/Method.pm @@ -3,7 +3,7 @@ package Moose::Meta::Method; use strict; use warnings; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Method'; diff --git a/lib/Moose/Meta/Method/Accessor.pm b/lib/Moose/Meta/Method/Accessor.pm index d67ca6a..f126242 100644 --- a/lib/Moose/Meta/Method/Accessor.pm +++ b/lib/Moose/Meta/Method/Accessor.pm @@ -6,7 +6,7 @@ use warnings; use Carp 'confess'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method', diff --git a/lib/Moose/Meta/Method/Augmented.pm b/lib/Moose/Meta/Method/Augmented.pm index 4cff580..1003324 100644 --- a/lib/Moose/Meta/Method/Augmented.pm +++ b/lib/Moose/Meta/Method/Augmented.pm @@ -5,7 +5,7 @@ use warnings; use Carp 'confess'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method'; diff --git a/lib/Moose/Meta/Method/Constructor.pm b/lib/Moose/Meta/Method/Constructor.pm index 34838d2..e8f023c 100644 --- a/lib/Moose/Meta/Method/Constructor.pm +++ b/lib/Moose/Meta/Method/Constructor.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken', 'looks_like_number'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method', diff --git a/lib/Moose/Meta/Method/Destructor.pm b/lib/Moose/Meta/Method/Destructor.pm index 64890cc..e6c8749 100644 --- a/lib/Moose/Meta/Method/Destructor.pm +++ b/lib/Moose/Meta/Method/Destructor.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method', diff --git a/lib/Moose/Meta/Method/Overriden.pm b/lib/Moose/Meta/Method/Overriden.pm index d7a5f14..3f97d2d 100644 --- a/lib/Moose/Meta/Method/Overriden.pm +++ b/lib/Moose/Meta/Method/Overriden.pm @@ -5,7 +5,7 @@ use warnings; use Carp 'confess'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method'; diff --git a/lib/Moose/Meta/Role.pm b/lib/Moose/Meta/Role.pm index 9054f42..389a865 100644 --- a/lib/Moose/Meta/Role.pm +++ b/lib/Moose/Meta/Role.pm @@ -8,7 +8,7 @@ use metaclass; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Class; diff --git a/lib/Moose/Meta/Role/Application.pm b/lib/Moose/Meta/Role/Application.pm index e1b6042..0ab4b5f 100644 --- a/lib/Moose/Meta/Role/Application.pm +++ b/lib/Moose/Meta/Role/Application.pm @@ -4,7 +4,7 @@ use strict; use warnings; use metaclass; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; __PACKAGE__->meta->add_attribute('method_exclusions' => ( diff --git a/lib/Moose/Meta/Role/Application/RoleSummation.pm b/lib/Moose/Meta/Role/Application/RoleSummation.pm index 71de8ba..2e22b34 100644 --- a/lib/Moose/Meta/Role/Application/RoleSummation.pm +++ b/lib/Moose/Meta/Role/Application/RoleSummation.pm @@ -10,7 +10,7 @@ use Data::Dumper; use Moose::Meta::Role::Composite; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Application'; diff --git a/lib/Moose/Meta/Role/Application/ToClass.pm b/lib/Moose/Meta/Role/Application/ToClass.pm index 38296bb..6fb73eb 100644 --- a/lib/Moose/Meta/Role/Application/ToClass.pm +++ b/lib/Moose/Meta/Role/Application/ToClass.pm @@ -9,7 +9,7 @@ use Scalar::Util 'blessed'; use Data::Dumper; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Application'; diff --git a/lib/Moose/Meta/Role/Application/ToInstance.pm b/lib/Moose/Meta/Role/Application/ToInstance.pm index 87e3e86..cc4c931 100644 --- a/lib/Moose/Meta/Role/Application/ToInstance.pm +++ b/lib/Moose/Meta/Role/Application/ToInstance.pm @@ -7,7 +7,7 @@ use metaclass; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Application::ToClass'; diff --git a/lib/Moose/Meta/Role/Application/ToRole.pm b/lib/Moose/Meta/Role/Application/ToRole.pm index 8e32322..571d285 100644 --- a/lib/Moose/Meta/Role/Application/ToRole.pm +++ b/lib/Moose/Meta/Role/Application/ToRole.pm @@ -9,7 +9,7 @@ use Scalar::Util 'blessed'; use Data::Dumper; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Application'; diff --git a/lib/Moose/Meta/Role/Composite.pm b/lib/Moose/Meta/Role/Composite.pm index b5440f9..842606c 100644 --- a/lib/Moose/Meta/Role/Composite.pm +++ b/lib/Moose/Meta/Role/Composite.pm @@ -7,7 +7,7 @@ use metaclass; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role'; diff --git a/lib/Moose/Meta/Role/Method.pm b/lib/Moose/Meta/Role/Method.pm index a57c529..27b3f10 100644 --- a/lib/Moose/Meta/Role/Method.pm +++ b/lib/Moose/Meta/Role/Method.pm @@ -4,7 +4,7 @@ package Moose::Meta::Role::Method; use strict; use warnings; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Method'; diff --git a/lib/Moose/Meta/Role/Method/Required.pm b/lib/Moose/Meta/Role/Method/Required.pm index cfc348c..827f911 100644 --- a/lib/Moose/Meta/Role/Method/Required.pm +++ b/lib/Moose/Meta/Role/Method/Required.pm @@ -4,7 +4,7 @@ package Moose::Meta::Role::Method::Required; use strict; use warnings; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Role::Method'; diff --git a/lib/Moose/Meta/TypeCoercion.pm b/lib/Moose/Meta/TypeCoercion.pm index e61faec..f341d3a 100644 --- a/lib/Moose/Meta/TypeCoercion.pm +++ b/lib/Moose/Meta/TypeCoercion.pm @@ -10,7 +10,7 @@ use Carp 'confess'; use Moose::Meta::Attribute; use Moose::Util::TypeConstraints (); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; __PACKAGE__->meta->add_attribute('type_coercion_map' => ( diff --git a/lib/Moose/Meta/TypeCoercion/Union.pm b/lib/Moose/Meta/TypeCoercion/Union.pm index 6dd337e..f52349f 100644 --- a/lib/Moose/Meta/TypeCoercion/Union.pm +++ b/lib/Moose/Meta/TypeCoercion/Union.pm @@ -8,7 +8,7 @@ use metaclass; use Carp 'confess'; use Scalar::Util 'blessed'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeCoercion'; diff --git a/lib/Moose/Meta/TypeConstraint.pm b/lib/Moose/Meta/TypeConstraint.pm index 93b43f3..368f314 100644 --- a/lib/Moose/Meta/TypeConstraint.pm +++ b/lib/Moose/Meta/TypeConstraint.pm @@ -11,7 +11,7 @@ use overload '""' => sub { shift->name }, # stringify to tc name use Carp 'confess'; use Scalar::Util qw(blessed refaddr); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; __PACKAGE__->meta->add_attribute('name' => (reader => 'name')); diff --git a/lib/Moose/Meta/TypeConstraint/Class.pm b/lib/Moose/Meta/TypeConstraint/Class.pm index 9039032..3be25d5 100644 --- a/lib/Moose/Meta/TypeConstraint/Class.pm +++ b/lib/Moose/Meta/TypeConstraint/Class.pm @@ -7,7 +7,7 @@ use metaclass; use Scalar::Util 'blessed'; use Moose::Util::TypeConstraints (); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Meta/TypeConstraint/Enum.pm b/lib/Moose/Meta/TypeConstraint/Enum.pm index 236448d..3303bd2 100644 --- a/lib/Moose/Meta/TypeConstraint/Enum.pm +++ b/lib/Moose/Meta/TypeConstraint/Enum.pm @@ -6,7 +6,7 @@ use metaclass; use Moose::Util::TypeConstraints (); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Meta/TypeConstraint/Parameterizable.pm b/lib/Moose/Meta/TypeConstraint/Parameterizable.pm index 9318bce..517e999 100644 --- a/lib/Moose/Meta/TypeConstraint/Parameterizable.pm +++ b/lib/Moose/Meta/TypeConstraint/Parameterizable.pm @@ -4,7 +4,7 @@ use strict; use warnings; use metaclass; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Meta/TypeConstraint/Parameterized.pm b/lib/Moose/Meta/TypeConstraint/Parameterized.pm index 302c52a..680b6dc 100644 --- a/lib/Moose/Meta/TypeConstraint/Parameterized.pm +++ b/lib/Moose/Meta/TypeConstraint/Parameterized.pm @@ -8,7 +8,7 @@ use Scalar::Util 'blessed'; use Carp 'confess'; use Moose::Util::TypeConstraints; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Meta/TypeConstraint/Registry.pm b/lib/Moose/Meta/TypeConstraint/Registry.pm index ad5d1ce..8791d97 100644 --- a/lib/Moose/Meta/TypeConstraint/Registry.pm +++ b/lib/Moose/Meta/TypeConstraint/Registry.pm @@ -8,7 +8,7 @@ use metaclass; use Scalar::Util 'blessed'; use Carp 'confess'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Object'; diff --git a/lib/Moose/Meta/TypeConstraint/Role.pm b/lib/Moose/Meta/TypeConstraint/Role.pm index 779167e..5ae68f7 100644 --- a/lib/Moose/Meta/TypeConstraint/Role.pm +++ b/lib/Moose/Meta/TypeConstraint/Role.pm @@ -7,7 +7,7 @@ use metaclass; use Scalar::Util 'blessed'; use Moose::Util::TypeConstraints (); -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Meta/TypeConstraint/Union.pm b/lib/Moose/Meta/TypeConstraint/Union.pm index df7b426..e4f7c22 100644 --- a/lib/Moose/Meta/TypeConstraint/Union.pm +++ b/lib/Moose/Meta/TypeConstraint/Union.pm @@ -7,7 +7,7 @@ use metaclass; use Moose::Meta::TypeCoercion::Union; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 84b0c08..86dce7f 100644 --- a/lib/Moose/Object.pm +++ b/lib/Moose/Object.pm @@ -9,7 +9,7 @@ use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class'; use Carp 'confess'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; sub new { diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index 5eed58a..44f8c86 100644 --- a/lib/Moose/Role.pm +++ b/lib/Moose/Role.pm @@ -10,7 +10,7 @@ use Carp 'confess', 'croak'; use Data::OptList; use Sub::Exporter; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; use Moose (); diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index af72b5e..41f6bcb 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -8,7 +8,7 @@ use Scalar::Util 'blessed'; use Carp 'confess'; use Class::MOP 0.56; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; my @exports = qw[ diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index bcb0008..b2315b2 100644 --- a/lib/Moose/Util/TypeConstraints.pm +++ b/lib/Moose/Util/TypeConstraints.pm @@ -8,7 +8,7 @@ use Carp 'confess'; use Scalar::Util 'blessed'; use Sub::Exporter; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; ## -------------------------------------------------------- diff --git a/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm b/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm index e6db973..bd8c927 100644 --- a/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm +++ b/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm @@ -5,7 +5,7 @@ use warnings; use Scalar::Util 'blessed', 'looks_like_number'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; sub Value { defined($_[0]) && !ref($_[0]) } diff --git a/lib/Test/Moose.pm b/lib/Test/Moose.pm index 508ef99..871d477 100644 --- a/lib/Test/Moose.pm +++ b/lib/Test/Moose.pm @@ -8,7 +8,7 @@ use Test::Builder; use Moose::Util 'does_role', 'find_meta'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; my @exports = qw[ diff --git a/lib/oose.pm b/lib/oose.pm index b4d9294..87dc5c0 100644 --- a/lib/oose.pm +++ b/lib/oose.pm @@ -5,7 +5,7 @@ use warnings; use Class::MOP; -our $VERSION = '0.53'; +our $VERSION = '0.54'; our $AUTHORITY = 'cpan:STEVAN'; BEGIN {