Small cli to compare semvers written in go
go get github.com/christianang/semver-cli/semver
Comparing two semvers:
$ semver compare 1.2.3 2.3.4
-1
semver compare:
- returns a
0if the two semvers are equal - returns a
1if the first semver is greater than the second semver - returns a
-1if the first semver is less than the second semver