Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
OK. That's enough. On more than one large project I've been bitten by having bad version numbers of modules. I'm going to write tests for my code which automatically loads up a bunch of modules and then validates the version numbers of everything in @INC which I can load
Add a versiontest.t (Score:1)
#!perl -w
use warnings;
use strict;
use File::Find;
use File::Slurp;
use Test::More qw(no_plan);
my $last_version = undef;
sub check {
return if (! m{blib/script/}xms && ! m{\.pm \z}xms);
my $content = read_file($_);
# only look