Subject: | Version numbering problem |
The newest version of CPAN doesn't handle version numbers that have two decimal points in a quoted string:
our $VERSION = '1.1.0';
I had a couple modules that I was doing the same thing with, and gave up on this format. I went back to just using a single decimal point:
our $VERSION = 1.11;
Even with this, I make sure the last digit is not a zero.