From: Shawn M Moore Date: Fri, 13 Jun 2008 01:08:00 +0000 (+0000) Subject: Bump the versions of everything to 0.50 X-Git-Tag: 0_55~112 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=eaa35e6e0f9132abf6ed0cec60515dd7259ce704;p=gitmo%2FMoose.git Bump the versions of everything to 0.50 --- diff --git a/Changes b/Changes index 7b9f50c..3434666 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,13 @@ Revision history for Perl extension Moose +0.50 Thurs. Jun 11, 2008 + - Fixed a version number issue by bumping all modules + to 0.50. + 0.49 Thurs. Jun 11, 2008 + !! This version now approx. 20-25% !! + !! faster with new Class::MOP 0.59 !! + * Moose::Meta::Attribute - fixed how the is => (ro|rw) works with custom defined reader, writer and accessor diff --git a/README b/README index 2c60542..951b04b 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.49 +Moose version 0.50 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index 1039ed3..c4e6f5a 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -4,7 +4,7 @@ package Moose; use strict; use warnings; -our $VERSION = '0.49'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util 'blessed'; diff --git a/lib/Moose/Meta/Attribute.pm b/lib/Moose/Meta/Attribute.pm index e9ab706..787c85c 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.26'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Method::Accessor; diff --git a/lib/Moose/Meta/Class.pm b/lib/Moose/Meta/Class.pm index f151258..7567fae 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.24'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Method::Overriden; diff --git a/lib/Moose/Meta/Instance.pm b/lib/Moose/Meta/Instance.pm index addaa97..91c404d 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.01'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use base "Class::MOP::Instance"; diff --git a/lib/Moose/Meta/Method.pm b/lib/Moose/Meta/Method.pm index 4ea95dd..fe12886 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.01'; +our $VERSION = '0.50'; 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 455cec0..8460b6a 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.12'; +our $VERSION = '0.50'; 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 0e93e7a..50f9bd8 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.02'; +our $VERSION = '0.50'; 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 3527301..b633704 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.11'; +our $VERSION = '0.50'; 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 1629e94..a6f4f65 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.04'; +our $VERSION = '0.50'; 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 344f804..25b18b2 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.02'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::Method'; diff --git a/lib/Moose/Meta/Role.pm b/lib/Moose/Meta/Role.pm index 95094eb..547dabb 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.16'; +our $VERSION = '0.50'; 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 99cc38f..f59bda2 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.01'; +our $VERSION = '0.50'; 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 c298bf3..fe27258 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.01'; +our $VERSION = '0.50'; 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 1ecc060..8101d75 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.01'; +our $VERSION = '0.50'; 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 85cd435..f512a15 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.03'; +our $VERSION = '0.50'; 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 d25257b..815d80e 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.01'; +our $VERSION = '0.50'; 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 99a3431..c68aff5 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.03'; +our $VERSION = '0.50'; 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 caf4141..5b03e94 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.01'; +our $VERSION = '0.50'; 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 0cc9b81..92b0f91 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.01'; +our $VERSION = '0.50'; 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 26d5420..426e2b6 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.06'; +our $VERSION = '0.50'; 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 41395d8..7161765 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.02'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeCoercion'; diff --git a/lib/Moose/Meta/TypeConstraint.pm b/lib/Moose/Meta/TypeConstraint.pm index 34bc437..e39c123 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.13'; +our $VERSION = '0.50'; 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 50a627c..0fc4ec9 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.02'; +our $VERSION = '0.50'; 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 6360d53..1d94095 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.01'; +our $VERSION = '0.50'; 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 162e394..7f73004 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.01'; +our $VERSION = '0.50'; 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 5867914..a7d45ae 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.02'; +our $VERSION = '0.50'; 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 b831d27..fd87fdf 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.01'; +our $VERSION = '0.50'; 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 40239b3..1cd13de 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.01'; +our $VERSION = '0.50'; 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 57c4e80..293cdb2 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.06'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Moose::Meta::TypeConstraint'; diff --git a/lib/Moose/Object.pm b/lib/Moose/Object.pm index 6426dd6..f3dce58 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.14'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; sub new { diff --git a/lib/Moose/Role.pm b/lib/Moose/Role.pm index 3a0774b..6883cd2 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.09'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; use Moose (); diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index 8b9738a..f0ee00c 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.05'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; my @exports = qw[ diff --git a/lib/Moose/Util/TypeConstraints.pm b/lib/Moose/Util/TypeConstraints.pm index 96d3ab1..40fd1e4 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.24'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; ## -------------------------------------------------------- diff --git a/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm b/lib/Moose/Util/TypeConstraints/OptimizedConstraints.pm index ef49088..a580686 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.02'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; sub Value { defined($_[0]) && !ref($_[0]) } diff --git a/lib/Test/Moose.pm b/lib/Test/Moose.pm index bf96c27..2a46ce7 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.01'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; my @exports = qw[ diff --git a/lib/oose.pm b/lib/oose.pm index 88f6f37..5d02aee 100644 --- a/lib/oose.pm +++ b/lib/oose.pm @@ -5,7 +5,7 @@ use warnings; use Class::MOP; -our $VERSION = '0.04'; +our $VERSION = '0.50'; our $AUTHORITY = 'cpan:STEVAN'; BEGIN {