The VersionParsing package implements flexible parsing of
version-number strings into Julia's built-in VersionNumber type, via
the vparse(string) function.
Unlike the VersionNumber(string) constructor, vparse(string) can
handle version-number strings in a much wider range of formats than
are encompassed by the semver standard. This
is useful in order to support VersionNumber comparisons applied
to "foreign" version numbers from external packages.
For example,
- Non-numeric prefixes are stripped along with any invalid version characters. Commas are treated as decimal points, and underscores are treated as hyphens.
- Text following whitespace or other invalid-version characters after the version number is ignored.
major.minor.patch.x.y.zis supported, withx.y.zprepended to the semver build identifier, i.e. it is parsed likemajor.minor.patch+x.y.z.- Multiple
+x+ybuild identifiers are concatenated as if they were+x.y. - A leading
0is prepended if needed, e.g..xis treated as0.x. - When all else fails, everything except the first
major.minor.patchdigits found are ignored.