v/vlib/semver
Tarcisio Gruppi 23dc85d94d
Making string index methods follow the same standard
All string index methods that end with `_opt` return `?int` with none as
the value when the substring is not found
and the index methods that do not end in `_opt` return `int` with -1 as
the returned value when the substring is not found
2022-03-17 09:27:11 -03:00
..
LICENSE.md all: add #pkgconfig directive using the new vlib modules (#6673) 2020-10-26 18:05:18 +01:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
compare.v fmt: smarter if condition wrapping (#8201) 2021-01-23 10:33:22 +02:00
parse.v Making string index methods follow the same standard 2022-03-17 09:27:11 -03:00
range.v builtin: change IError `msg` and `code` to methods + fix vlib, add a deprecation notice for the old usages (#13041) 2022-02-11 15:52:33 +02:00
semver.v builtin: change IError `msg` and `code` to methods + fix vlib, add a deprecation notice for the old usages (#13041) 2022-02-11 15:52:33 +02:00
semver_test.v semver: add a Version.str() method with unit tests (#12779) 2021-12-09 21:25:55 +02:00
util.v semver: add input information in error and panic output (#7712) 2020-12-30 17:07:21 +01:00
v.mod all: add #pkgconfig directive using the new vlib modules (#6673) 2020-10-26 18:05:18 +01:00

README.md

Description:

semver is a library for processing versions, that use the semver format.

Examples:

import semver

fn main() {
	ver1 := semver.from('1.2.4') or {
		println('Invalid version')
		return
	}
	ver2 := semver.from('2.3.4') or {
		println('Invalid version')
		return
	}
	println(ver1.gt(ver2))
	println(ver2.gt(ver1))
	println(ver1.satisfies('>=1.1.0 <2.0.0'))
	println(ver2.satisfies('>=1.1.0 <2.0.0'))
	println(ver2.satisfies('>=1.1.0 <2.0.0 || >2.2.0'))
}
false
true
true
false
true

For more details see semver.v file.