Semver is a Swift implementation of the Semantic Versioning.
- macOS 10.9+ / iOS 8.0+ / tvOS 9.0+ / watchOS 2.0+
- Xcode 9+
- Swift 4.0+
import Semver
// A leading "v" character is ignored.
let version = Semver("v1.3.8-rc.1+build.3")!
version > Semver("1.0.2+39f1d74")! // true
Add the project to your Cartfile
:
github "ddddxxx/Semver"
Add the project to your Package.swift
file:
let package = Package(
dependencies: [
.Package(url: "https://github.com/ddddxxx/Semver")
]
)
Add the project to your Podfile
:
pod 'Semver2'
Semver is available under the MIT license. See the LICENSE file.