On Wed Feb 10 09:52:37 2010, DAGOLDEN wrote:
Show quoted text> I ran "perl-reversion --bump" on CPAN-Reporter-1.1709 and the versions
> were bumped to 1.17010. It should have bumped to 1.1710.
Perl::Version doesn't have the smarts to act this way because it's considering all versions to have three parts. It sees 1.170.009, which it bumps to 1.170.010, which it stringifies to 1.17010. This is documented behavior.
We could turn off the way if deals with a single decimal point with another code path, perhaps enabled by a command-line option. Otherwise, a change would disrupt intended behavior.