A data model to store and compare software version numbers (https://semver.org)
import DPVersion
let a: DPVersion = "1.6.4-alpha.5" // literal init with long prerelease tag
let b: DPVersion = "1.6.4-b5" // literal init with short prerelease tag
let c: DPVersion = DPVersion(major: 2, minor: 7, patch: 0, beta: 5) // default initializer
let d: DPVersion = "2.0.0" // literal init with major + minor + patch
let e: DPVersion = "2.0" // literal init with major + minor
- iOS 11+
- Xcode 15+
- Swift 5.7+
Add the dependency to the DPVersion
framework in your Podfile
:
pod 'DPVersion', '~> 1.0.0'
Add it as a dependency in a Swift Package:
dependencies: [
.package(url: "https://github.com/danielepantaleone/DPVersion.git", .upToNextMajor(from: "1.0.0"))
]
If you like this project you can contribute it by:
- Submit a bug report by opening an issue
- Submit code by opening a pull request
MIT License
Copyright (c) 2023 Daniele Pantaleone
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.