Burak Gürsoy wrote:
Indeed. I also don't like $VERSION = localtime() stuff like $VERSION =
20090913.foo thingies. Just nonsense.
I use the three number form:
$VERSION = q(v1.2.3);
'1' is the major version number; it only changes when the API changes.
'2' is the minor version number; it changes when the API is augmented.
'3' is the revision number; it changes with every bug fix and security
update.
I don't use the pragmatic `version` since it is not install with Perl yet.
--
Just my 0.00000002 million dollars worth,
Shawn
Programming is as much about organization and communication
as it is about coding.
I like Perl; it's the only language where you can bless your
thingy.