SemVer
open class SemVer(val major: BigInteger, val minor: BigInteger, val patch: BigInteger, val prerel: String? = null, val buildMetadata: String? = null) : Comparable<SemVer>
Representation of a version string in the format of Semantic Versioning 2.0.
Constructors
Link copied to clipboard
constructor(major: ULong, minor: ULong, patch: ULong, prerel: String? = null, buildMetadata: String? = null)
constructor(major: BigInteger, minor: BigInteger, patch: BigInteger, prerel: String? = null, buildMetadata: String? = null)