DPVersion

Swift Platform Cocoapods GitHub release (latest SemVer) GitHub GitHub Workflow Status (with event)

一个用于存储和比较软件版本号的数据模型 (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

安装

Cocoapods

DPVersion 框架添加到你的 Podfile 中作为依赖

pod 'DPVersion', '~> 1.0.0'

Swift Package Manager

将其作为依赖项添加到 Swift Package 中

dependencies: [
    .package(url: "https://github.com/danielepantaleone/DPVersion.git", .upToNextMajor(from: "1.0.0"))
]

贡献

如果你喜欢这个项目,你可以通过以下方式贡献它:

许可证

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.