Releases: ActiveState/langtools
Releases · ActiveState/langtools
v0.0.9
v0.0.8
v0.0.7
v0.0.6
- Fix bug in remove trailing zeros change when the version is all zeros.
v0.0.5
- Remove trailing zeros from parsed package versions because version comparison func
version.Compare
does not need trailing zeros to compare versions correctly.
v0.0.4
- Added support for parsing Ruby package versions, based on the rubygemstests.
v0.0.3
-
Added
.String()
and.Clone()
methods to theVersion
struct. -
Used enumer to generate a
.String()
method for theParsedAs
type. -
Changed the
version.Compare
func so that versions of different length compare as equal when both end in one or more segments of zeroes. In other words,1.0
and1.0.0
are now treated as equal.