From: Nicholas Clark Date: Sun, 17 Apr 2011 16:38:29 +0000 (+0100) Subject: LICENSE was added to ExtUtils::MakeMaker in 6.31, not 6.30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1507f6e06ce9cac06b86caa621e1f9b9e9d618d7;p=p5sagit%2FDevel-Size.git LICENSE was added to ExtUtils::MakeMaker in 6.31, not 6.30 --- diff --git a/CHANGES b/CHANGES index dfd6840..7fe1b4b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Revision history for Perl extension Devel::Size. +0.74 2011-04-18 nicholas + * Correct the Makefile.PL - LICENSE was added to ExtUtils::MakeMaker in 6.31 + 0.73_51 2011-04-17 nicholas * Refactor the C code to accumulate the size inside the tracking structure - this means that the C *_size() functions now return void diff --git a/Makefile.PL b/Makefile.PL index 935ad2b..2066fe8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,5 +5,5 @@ WriteMakefile( NAME => 'Devel::Size', VERSION_FROM => 'lib/Devel/Size.pm', ($ExtUtils::MakeMaker::VERSION >= 6.47 ? (MIN_PERL_VERSION => '5.008') : ()), - ($ExtUtils::MakeMaker::VERSION >= 6.30 ? (LICENSE => 'perl') : ()), + ($ExtUtils::MakeMaker::VERSION >= 6.31 ? (LICENSE => 'perl') : ()), );