Sorting Versions
semver versions are often used for software releases.
Adding a ^ or v sorting hint to a column with the version hint (..) will cause the column to be sorted by version number.
Supported Version Formats
| Example | Description |
|---|---|
| v1.2.3 | full major, minor, patch versions |
| 1.2.3 | the v prefix is not required |
| 1 | major version only |
| 1.x | major, minor version |
| 1.2 | major, minor version |
| 1.2.x | major, minor version with unknown patch number |
| 1.2.3 | major, minor and patch numbers |
| 1.2.3-rc1 | full version with qualifier label |
| 1.2.3-linux-amd64 | full version with qualifier label |
| 1.2.3 (123abc) | full version with build label |