Lot's of ways to set your modules $VERSION in perl, some even have advantages. What I don't know is why we do it? I mean the META.yml has a version... which is what cpan uses? so why do we set it in the module? what's the point?
| |||
|
feedback
|
|
So you can say
And the code will fail if you don't have at least version 4.5.6 of Module::Name installed. It is also helpful when you need to know what version is installed, you can just say:
This is roughly equivalent to
It will fail (becuase
| |||||||||||||||||||
feedback
|
|
From perlmodlib: Guidelines for Module Creation:
To supplement the Answers given by others, here is the link to use MODULE VERSION | |||
|
feedback
|
|
So if your module is widely used and actively maintained, people can reference the version easily in their code to activate/deactivate their code depending on what version they use. Just a guess. | |||
|
feedback
|
|
to ensure that a minimum version of YourModule is available. This is important for API changes, bug fixes, etc. | |||
|
feedback
|
|
This might be a little off topic, but since perl 5.12 you can set your modules VERSION simply by doing
See perl 5.12 changes. The version number must adhere to the "strict" format though, see $version::STRICT in version::Internals. | |||||||||
feedback
|
authors/id/A/AU/AUTHOR/Dist-Name-X.Y.meta, but you need to know the author, distribution and version already to get it so there's a clear chicken/egg problem. – Schwern Sep 4 '10 at 19:42