DPVersion 1.1.0

DPVersion 1.1.0

Daniele Pantaleone维护。



DPVersion 1.1.0

  • Daniele Pantaleone

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

要求

  • iOS 11+
  • Xcode 15+
  • Swift 5.7+

安装

CocoaPods

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

pod 'DPVersion', '~> 1.0.0'

Swift包管理器

在Swift包中将其作为依赖项添加

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.