Imager::Graph now requires perl 5.006
authorTony Cook <tony@develop-help.com>
Sun, 6 May 2012 01:03:35 +0000 (11:03 +1000)
committerTony Cook <tony@develop-help.com>
Sun, 6 May 2012 01:03:35 +0000 (11:03 +1000)
Changes
Makefile.PL

diff --git a/Changes b/Changes
index 8f5cdff53b7007a5e16288b295e1b57556835c62..3091d2212e21d1e9dca53b2028da7cf1c2c736b1 100644 (file)
--- a/Changes
+++ b/Changes
@@ -18,6 +18,8 @@ Imager-Graph 0.10 - unreleased
    negative_bg color filled from the left side of the chart off the
    right side of the image.
 
+ - Imager::Graph now requires at least perl 5.6.
+
 Imager-Graph 0.09 - 05 Aug 2010
 =================
 
index 868ac96ea7af20a9b2407595e081913099994617..6792a24da69f3c6b33ec7913da1e72201e7528a9 100644 (file)
@@ -19,12 +19,16 @@ if ($MM_ver >= 6.46) {
      resources =>
      {
       homepage => "http://imager.perl.org/",
-      repository => "git://git.imager.perl.org/imager.git",
+      repository => "git://git.imager.perl.org/imager-graph.git",
       bugtracker => "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Imager-Graph",
      },
     };
 }
 
+if ($MM_ver >= 6.48) {
+  $opts{MIN_PERL_VERSION} = "5.006";
+}
+
 WriteMakefile(
               %opts,
               'NAME'          => 'Imager::Graph',