in reply to Re: Can't use three part version number for CPAN modules
in thread Can't use three part version number for CPAN modules

In Problem with CPAN and module version numbers, TheDamian mentions that the PAUSE indexer does not handle the version module correctly, so I'm not sure if its changed now. The VERSION variable in my module was set as

our $VERSION = "0.0.3";

--
Rohan

Replies are listed 'Best First'.
Re^3: Can't use three part version number for CPAN modules
by adrianh (Chancellor) on Jan 04, 2006 at 12:17 UTC
    our $VERSION = "0.0.3";

    If you're following TheDamian's advice you'll want to use the version module instead of a plain string. Something like:

    use version; our $VERSION = qv( '0.0.0' );

    and adding version to your modules prerequisites. NOTE: it's important to keep the use version on the same line since many modules grep out the line with $VERSION and eval it to get the version number out.