Adam Kennedy wrote: > It might be worth running Perl::MinimumVersion over the codebase real > quick. > > It has all the obvious stuff coded into it (like warnings and qr//) > already.
Swanky! Some minor nits (-v not documented, documented output not the same as actual output). And I can think of a few more things to check... for my $foo (...) # 5.4 open my $fh, "bar"; # 5.6? use threads; # 5.8.0 (5.8.1 if you want a hope of working) 3 arg open # ? open to scalar reference # ? open with disciplines # ? utf8.pm was added in 5.6.0 not 5.8.0 PerlIO # 5.7.3 etc... I'll exercise my commit bit.