mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
Before: 0.31.0-rc1 After: 0.31.0-rc.1 Why this matters: we want to do things the right way from the start. Version patten affects how versions are parsed and sorted. For example, we have release candidates number 9 and 10: * In 'rc.9' and 'rc.10', the numeric parts are compared as numbers, so 9 comes before 10. * In 'rc9' and 'rc10', versions are compared lexicographically, so 10 comes before 9, which is wrong. Reference: SemVer items 9–11. https://semver.org/#spec-item-9 Signed-off-by: Nick Volynkin <nick.volynkin@gmail.com>