Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.22 KB

README.md

File metadata and controls

58 lines (38 loc) · 1.22 KB

Semver

Build Status supports platforms

Semver is a Swift implementation of the Semantic Versioning.

Requirements

  • macOS 10.9+ / iOS 8.0+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 9+
  • Swift 4.0+

Example

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

Installation

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'

License

Semver is available under the MIT license. See the LICENSE file.