├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .spi.yml ├── FUNDING.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SemanticVersion │ ├── Documentation.docc │ └── SemanticVersion.md │ ├── SemanticVersion+Codable.swift │ ├── SemanticVersion+LosslessStringConvertible.swift │ └── SemanticVersion.swift └── Tests └── SemanticVersionTests ├── SemanticVersionCodableTests.swift └── SemanticVersionTests.swift /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata/ 5 | .swiftpm/ 6 | -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/.spi.yml -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SemanticVersion/Documentation.docc/SemanticVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Sources/SemanticVersion/Documentation.docc/SemanticVersion.md -------------------------------------------------------------------------------- /Sources/SemanticVersion/SemanticVersion+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Sources/SemanticVersion/SemanticVersion+Codable.swift -------------------------------------------------------------------------------- /Sources/SemanticVersion/SemanticVersion+LosslessStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Sources/SemanticVersion/SemanticVersion+LosslessStringConvertible.swift -------------------------------------------------------------------------------- /Sources/SemanticVersion/SemanticVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Sources/SemanticVersion/SemanticVersion.swift -------------------------------------------------------------------------------- /Tests/SemanticVersionTests/SemanticVersionCodableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Tests/SemanticVersionTests/SemanticVersionCodableTests.swift -------------------------------------------------------------------------------- /Tests/SemanticVersionTests/SemanticVersionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftPackageIndex/SemanticVersion/HEAD/Tests/SemanticVersionTests/SemanticVersionTests.swift --------------------------------------------------------------------------------