============= SemVer 2.0.0 parsing and constructing library
You can compare structs.
SemVer("1.0.0-rc.1") < SemVer("1.0.0-rc.20");
SemVer("1.0.0-rc.1") < SemVer("1.0.0");
SemVer("1.0.0-rc.1") < SemVer("1.0.0+build.1");
Check out ./examples
directory
You can use this library at compile-time.
pragma(msg, SemVer("1.0.0").nextMajor.nextMinor.toString);