Skip to content

Swift µ-library to express semantic version numbers and parse from strings.

License

Notifications You must be signed in to change notification settings

CleanCocoa/Version

Repository files navigation

Version

Swift µ-library to represent (semantic) Versions in code, including parsing from String.

Usage

import Version

let version = Version(2, 3, 4)
print(version) // => "2.3.4"

let update = Version(fromString: "2.3.5")
print(update.major) // => "2"
print(update.minor) // => "3"
print(update.patch) // => "5"

Alternatives

License

Copyright © 2020 Christian Tietze. All rights reserved. Distributed under the MIT License.

About

Swift µ-library to express semantic version numbers and parse from strings.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages