From: Stevan Little Date: Thu, 23 Feb 2006 21:41:35 +0000 (+0000) Subject: 0.11 stuff X-Git-Tag: 0_11~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d304984927c1cac62247a93d2cfeb9d1215c9713;p=gitmo%2FClass-C3.git 0.11 stuff --- diff --git a/ChangeLog b/ChangeLog index b5f2e2b..ab39b9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ Revision history for Perl extension Class::C3. -0.11 +0.11 - added some more tests for edge cases - removed INIT, you must explicitly call &initialize now - added docs explaining this @@ -9,6 +9,8 @@ Revision history for Perl extension Class::C3. that as a dependency to this module - added docs to explain the "next::method in anon-sub" issue - suggestions/solutions/patches welcome :) + - bumped the Scalar::Util version requirement back down + to 1.10, apparently the newer version has some issues 0.10 - Wed, Feb 8, 2006 - removed the Sub::Name and NEXT dependencies and diff --git a/Makefile.PL b/Makefile.PL index 431d78c..d4c4e9a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,7 @@ WriteMakefile( 'PREREQ_PM' => { 'Test::More' => 0.47, 'Test::Exception' => 0.15, - 'Scalar::Util' => 1.18, + 'Scalar::Util' => 1.10, 'Algorithm::C3' => 0.01, } );