Subject: | Decreasing verion number |
0.2.0 is, according to the perl version arithmetic, less than 0.12.
Don't decrease version numbers, you hurt your users. They will not
notice the new release.
Maybe take a break and read
http://www.dagolden.com/index.php/369/version-numbers-should-be-boring/
Or simply take your inspiration from this oneliner:
k@k81:~% perl -le 'use version;for (@ARGV){printf "%7s:%5s\n", $_,
version->new($_) <=> version->new("0.12");}' 0.2.0 0.12.0 0.120.0 0.120.1
0.2.0: -1
0.12.0: -1
0.120.0: 0
0.120.1: 1
HTH, Regards,