swift-version-compare

2.0.2

Create and compare semantic versions in swift.
mflknr/swift-version-compare

What's New

2.0.2

2024-05-09T17:20:49Z

Added

  • SwiftLint with a .swiftlint.yml file. lint checks are done on CI
  • Sendable conformance to Version to satisfy build warnings when complete concurrency checks are enabled
  • SwiftFormat with a format file. lint checks are done on CI

Removed

  • support for swift 5.7 and 5.8 on CI

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

swift-version-compare

build doccov licence

A package introducing a Version object implementing the SemanticVersionComparable protocol for comparing versions conforming to SemVer.

Installation

Swift Package Manager:

.package(url: "https://github.com/mflknr/swift-version-compare.git", from: "2.0.0"))

Usage

For detailed implementation information see documentation.

// use the version core identifier for initialization
let versionOne = Version(1, 0, 0)
let versionTwo = Version(
    major: 1,
    minor: 0,
    patch: 0,
    prerelease: [.alpha],
    build: ["1"]
) // -> prints: "1.0.0-alpha+1"

// use strings
// use `ExpressibleByStringLiteral` with caution, because it's fatal if string is not `SemVer` version
let versionThreeA: Version? = "1.0.0" 
let versionThreeB: Version? = Version("1.0.0")

// easy initial `0.0.0` version
let initialVersion: Version = .initial

// from bundle and processInfo
let bundleVersion = Bundle.main.shortVersion
let osVersion = ProcessInfo.processInfo.comparableOperatingSystemVersion

// compare versions with usally known operators (==, ===, <, <=, >=, >)
if Version("1.0.0") > Version("0.4.0") {
    // ...
}

Description

  • Swift Tools 5.7.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu May 16 2024 18:09:54 GMT-0900 (Hawaii-Aleutian Daylight Time)