aboutsummaryrefslogtreecommitdiff
path: root/lib/std/SemanticVersion.zig
AgeCommit message (Collapse)Author
2021-06-21fix code broken from previous commitJacob G-W
2021-05-08std: update usage of std.testingVeikka Tuominen
2021-01-12Move fmt.testFmt to testing.expectFmtJay Petacat
2021-01-09builtin: Add zig_versionJay Petacat
This will enable code to perform version checks and make it easier to support multiple versions of Zig. Within the SemVer implementation, an intermediate value needed to be coerced to a slice to workaround a comptime bug. Closes #6466
2021-01-02convert more {} to {d} and {s}Andrew Kelley
2021-01-02std: Use {s} instead of {} when printing stringsLemonBoy
2020-11-06std: Introduce SemanticVersion data structureJay Petacat
This will parse, format, and compare version strings following the SemVer 2 specification. See: https://semver.org Updates #6466