├── .github └── workflows │ ├── main.yml │ └── swift.yml ├── .gitignore ├── .swiftlint.yml ├── LICENSE ├── Package.swift ├── README.md ├── SemanticVersioning.podspec ├── Source ├── NSBundle+Version.swift ├── SemanticVersioning.swift ├── SemanticVersioningParser.swift └── Version+IntegerLiteralConvertible.swift └── Tests ├── SemanticVersioningParserTest.swift ├── SemanticVersioningTests.swift └── VersionIntegerLiteralConvertible.swift /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/README.md -------------------------------------------------------------------------------- /SemanticVersioning.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/SemanticVersioning.podspec -------------------------------------------------------------------------------- /Source/NSBundle+Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Source/NSBundle+Version.swift -------------------------------------------------------------------------------- /Source/SemanticVersioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Source/SemanticVersioning.swift -------------------------------------------------------------------------------- /Source/SemanticVersioningParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Source/SemanticVersioningParser.swift -------------------------------------------------------------------------------- /Source/Version+IntegerLiteralConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Source/Version+IntegerLiteralConvertible.swift -------------------------------------------------------------------------------- /Tests/SemanticVersioningParserTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Tests/SemanticVersioningParserTest.swift -------------------------------------------------------------------------------- /Tests/SemanticVersioningTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Tests/SemanticVersioningTests.swift -------------------------------------------------------------------------------- /Tests/VersionIntegerLiteralConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderNey/SemanticVersioning/HEAD/Tests/VersionIntegerLiteralConvertible.swift --------------------------------------------------------------------------------