> I use the three number form: > $VERSION = q(v1.2.3);
This may cause problems because it makes $VERSION a string, namely, "v1.2.3". This prohibits numeric version comparisons which is the norm. It also means your CPAN modules will get called something like Mod-Name-v1.2.3.tar.gz which is also non-standard.
