# from Jonathan Yu
# on Tuesday 28 July 2009 09:37:
>In at least one report, the version seems to be recent, so I'm not
>sure if it's a new issue: version 0 0.76_06
It appears that you're using the deprecated (or soon-to-be-deprecated
(or maybe not deprecated depending on how you quote it?)) multi-dotted
version number without the leading v. This might be a bug in the new
version.pm (or a bug in the deprecation), but note that the docs
recommend that you have the leading 'v' for multi-dotted versions:
> use version; our $VERSION = qv('1.0.6');
use version 0.77; our $VERSION = qv("v1.2.3");
I think 0.77 was supposed to be just a docs cleanup, but maybe something
got changed slightly. Anyway, the docs were historically somewhat
distracting and tended to recommend the least-best ways to do stuff.
Aside: I just do:
our $VERSION = v1.2.3;
--Eric
--
Hot dogs: just another condiment.
--Heart-attack Man
---------------------------------------------------
http://scratchcomputing.com
---------------------------------------------------