Remember, increment the patch version (1.0.x) if you make a bugfix, increment the minor version (1.x.0) if you make a new feature (but previous content is still compatible), and increment the major version (x.0.0) if you make a breaking change (e.g. new API or reorganized file format).

Static variables

@:value("1.0.0")staticfinalread onlyDEFAULT_VERSION:Version = "1.0.0"

@:value("*.*.*")staticfinalread onlyDEFAULT_VERSION_RULE:VersionRule = "*.*.*"

Static methods

staticinlineanyMinor(version:Version):VersionRule

staticinlineanyPatch(version:Version):VersionRule

staticinlinematch(version:Version, rule:VersionRule):Bool

Validate version against rule.

Returns:

true if version satisfies rule, false otherwise.

staticinlinestripPre(version:Version):Version