Subject: | Minimum Perl requirement too high in Makefile.PL |
In the Changes for 0.13 you write that
"Minimum supported Perl version is now 5.6.1."
whereas in the Makefile.PL, you have:
use 5.008001;
which makes the CPAN tool go:
Perl v5.8.1 required--this is only v5.8.0, stopped at Makefile.PL line 1.
....so, it refuses to install if one has 5.8.0.
I think specifying
use 5.006001;
in Makefile.PL will fix the error, but I'm not too familiar with the version number notation, so I'm not sure. :-)
Cheers,
Kjetil