There are a few things I disagree with in PBP, but I'm just going to name the one that is current causing me the most inconvenience because I can't just ignore the rule.
Damian says, "use three-part version numbers."
No. Do not do this, at least not if you're going to use version.pm.
Because Damian is using "qv(0.99.2)" and the like, the CPAN indexer considers the version number in IO/Prompt.pm to be undef, so it is not newer than the one that had "$VERSION = '0.02'" and so the new version isn't installed when I run "cpanp install IO::Prompt"
Maybe the indexer should be fixed, but in the meantime, do not do what Damian does.
Class::DBI has a solution (Score:2)
This is slightly ugly, but will work.
-Dom
Re:Class::DBI has a solution (Score:1)
That's from the current file:
CPAN Indexer (Score:1)
Andreas is working on a change to the indexer that will use version.pm to translate x.y.z to a float that can be , but it's not there yet. Until then, I agree with the poster -- do not use x.y.z versions unless you *absolutely* must,