From: Dave Rolsky Date: Mon, 23 Mar 2009 15:38:20 +0000 (-0500) Subject: changes for merge of refactor-immutable branch and depend on the very latest cmop X-Git-Tag: 0.72_01~34 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=886fcfb08b090f8144e4556c2084c61bb14e34d9;p=gitmo%2FMoose.git changes for merge of refactor-immutable branch and depend on the very latest cmop --- diff --git a/Changes b/Changes index beade47..eb11a02 100644 --- a/Changes +++ b/Changes @@ -48,6 +48,10 @@ Revision history for Perl extension Moose * Moose::Meta::Method::Destructor - This is_needed method is now always a class method. + * Moose::Meta::Class + - Changes to the internals of how make_immutable works to match + changes in latest Class::MOP. + 0.72 Mon, February 23, 2009 * Moose::Object * Moose::Meta::Method::Constructor diff --git a/Makefile.PL b/Makefile.PL index 9032f4d..e53e241 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ license 'perl'; requires 'Scalar::Util' => '1.19'; requires 'Carp'; -requires 'Class::MOP' => '0.77_01'; +requires 'Class::MOP' => '0.78_02'; requires 'List::MoreUtils' => '0.12'; requires 'Sub::Exporter' => '0.972'; requires 'Task::Weaken' => '0'; diff --git a/lib/Moose.pm b/lib/Moose.pm index b222379..c0a7973 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -15,7 +15,7 @@ use Carp 'confess'; use Moose::Exporter; -use Class::MOP 0.77_01; +use Class::MOP 0.78_02; use Moose::Meta::Class; use Moose::Meta::TypeConstraint;