in reply to $VERSION in module files
See my reply in the thread What basic things should I know about versioning modules? that a 1.23 style versioning should provide maximum compatibility, specified in a format of our $VERSION = "1.23";. Of course, TIMTOWTDI, and you'll see some modules use interesting versioning schemes and some modules use code to determine $VERSION like parsing it out of a VCS $Revision$ string. See the documentation in ExtUtils::MakeMaker's VERSION_FROM and ExtUtils::MM_Unix's parse_version, but note that those are probably not the only tools that parse version strings out of module files, so I'd really only recommend our $VERSION = string;.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: $VERSION in module files
by bliako (Abbot) on Mar 26, 2020 at 10:46 UTC | |
by tobyink (Canon) on Mar 26, 2020 at 16:04 UTC | |
by bliako (Abbot) on Mar 27, 2020 at 12:55 UTC | |
by tobyink (Canon) on Mar 28, 2020 at 14:49 UTC | |
by hippo (Archbishop) on Mar 26, 2020 at 11:14 UTC | |
by Haarg (Priest) on Mar 26, 2020 at 12:55 UTC | |
by haukex (Archbishop) on Mar 26, 2020 at 12:25 UTC | |
by hippo (Archbishop) on Mar 26, 2020 at 13:34 UTC | |
by Haarg (Priest) on Mar 27, 2020 at 10:35 UTC | |
| |
by Anonymous Monk on Mar 26, 2020 at 21:23 UTC | |
by soonix (Chancellor) on Mar 27, 2020 at 04:23 UTC | |
by Anonymous Monk on Mar 27, 2020 at 07:52 UTC | |
| |
by pryrt (Abbot) on Mar 26, 2020 at 13:15 UTC |