Why are version numbers typically "2.1.3" instead of 2.13?
Seems like the latter makes more sense, since you can run numerical comparators over it.
|
Why are version numbers typically "2.1.3" instead of 2.13? Seems like the latter makes more sense, since you can run numerical comparators over it. |
|||
|
|
For the same reason that when the version number is encoded into an integer (e.g. Python's sys.hexversion), it's padded with zeroes: You frequently have to go beyond 10. Many projects adopt a major.minor.bugfix scheme (e.g. Semantic Versioning). Maybe version 2.1.9 has a security hole which need to patch; you'd need to call it 2.1.10 (because calling it 2.2.0 implies new features and possible minor incompatibilities). Maybe version 3 completely changes the syntax so you want to continue to add features to version 2. Maybe your project simply releases so frequently that you have more than 100 minor/bugfix versions per major version (kernel.org lists 2.6.34.14 and 3.0.60). Finally, it's a string. Sure, you can parse it into a double for comparison purposes, but plenty of languages/libraries support "numeric" string comparisons (so "Document 9" comes before "Document 10"); Apache's mod_autoindex even calls it "VersionSort". |
|||
|
|
|
The three level versioning scheme typically reflects major.minor.build (or major.minor.revision). The three levels allow for decreasing significance of the changes between levels. The difference between software with major 1, minor 13 and major 1, minor 12 should be signficantly greater than the difference between major 1, minor 1, build 3 and major 1, minor 1, build 2. You can split the version numbers on the . and compare each level individually. |
||||
|
|
|
Even there is only one decimal point, you cannot use numerical comparator over it. Here is the example. |
|||||||
|