Skip to content

Commit

Permalink
Merge pull request #307 from rzulkoski/parseXcodeVersionBetaFormat
Browse files Browse the repository at this point in the history
Support parsing `.xcode-version` beta format
  • Loading branch information
MattKiazyk authored Feb 16, 2024
2 parents fed9d1c + b5d239f commit 7340c9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Sources/XcodesKit/Version+Xcode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public extension Version {

optionalPrereleaseIdentifiers[lastIndex] = "\(lastItem)-seed"
}
} else if type == "b" {
optionalPrereleaseIdentifiers.append("beta")
} else {
optionalPrereleaseIdentifiers.append(type)
}
Expand Down
4 changes: 4 additions & 0 deletions Tests/XcodesKitTests/Models+FirstWithVersionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ final class ModelsFirstWithVersionTests: XCTestCase {
installedXcodes.first(withVersion: Version(xcodeVersion: "1.2.3 Beta 2")!),
InstalledXcode(path: Path("/Applications/Xcode-1.2.3-beta.2.app")!, version: Version(xcodeVersion: "1.2.3 Beta 2")!)
)
XCTAssertEqual(
installedXcodes.first(withVersion: Version(xcodeVersion: "1.2.3b2")!),
InstalledXcode(path: Path("/Applications/Xcode-1.2.3-beta.2.app")!, version: Version(xcodeVersion: "1.2.3 Beta 2")!)
)

// With build metadata
XCTAssertEqual(
Expand Down

0 comments on commit 7340c9b

Please sign in to comment.