From: Stevan Little Date: Fri, 8 Jun 2007 20:31:24 +0000 (+0000) Subject: bumping version and reviewing immutable changes X-Git-Tag: 0_23~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a8878950cc672b8f14eb2692837614a53bee627c;p=gitmo%2FMoose.git bumping version and reviewing immutable changes --- diff --git a/Build.PL b/Build.PL index b48124f..a473e11 100644 --- a/Build.PL +++ b/Build.PL @@ -12,7 +12,7 @@ my $build = Module::Build->new( requires => { 'Scalar::Util' => $win32 ? '1.17' : '1.18', 'Carp' => '0', - 'Class::MOP' => '0.37', + 'Class::MOP' => '0.39', 'Sub::Name' => '0.02', 'Sub::Exporter' => '0.972', 'B' => '0', diff --git a/README b/README index d7f96a7..4382999 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.22 +Moose version 0.23 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index f769571..1046b84 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -4,7 +4,7 @@ package Moose; use strict; use warnings; -our $VERSION = '0.22'; +our $VERSION = '0.23'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util 'blessed', 'reftype'; @@ -14,7 +14,7 @@ use B 'svref_2object'; use Sub::Exporter; -use Class::MOP; +use Class::MOP 0.39; use Moose::Meta::Class; use Moose::Meta::TypeConstraint; diff --git a/lib/Moose/Meta/Class.pm b/lib/Moose/Meta/Class.pm index 6b7d379..092f641 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', 'reftype'; -our $VERSION = '0.13'; +our $VERSION = '0.14'; our $AUTHORITY = 'cpan:STEVAN'; use Moose::Meta::Method::Overriden; diff --git a/t/300_immutable_moose.t b/t/300_immutable_moose.t index baef742..2450f5d 100644 --- a/t/300_immutable_moose.t +++ b/t/300_immutable_moose.t @@ -12,15 +12,14 @@ BEGIN { } { - package FooRole; - our $VERSION = '0.01'; - sub foo { 'FooRole::foo' } - } + package FooRole; + our $VERSION = '0.01'; + sub foo { 'FooRole::foo' } +} { package Foo; use Moose; - } {