Skip to content

Commit ccab0d7

Browse files
authored
chore: Add macOS 26 for asset caatalogs (#2928)
### Description Adding support for macOS 26 in the asset catalog parsing, now that macOS 26 is released. Tested it out by uploading a build without issues from macOS 26
1 parent b8c061f commit ccab0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/AssetCatalogParser/AssetCatalogReader.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public func swift_inspect_asset_catalog(_ path: UnsafePointer<CChar>, outputPath
1111
let pathString = String(cString: path)
1212
let outputPathString = String(cString: outputPath)
1313
if #available(macOS 13.0, *) {
14-
let supportedVersions = [13, 14, 15]
14+
let supportedVersions = [13, 14, 15, 26]
1515
let version = ProcessInfo.processInfo.operatingSystemVersion
1616
if supportedVersions.contains(version.majorVersion) {
1717
AssetUtil.disect(file: URL(filePath: pathString), outputURL: URL(filePath: outputPathString))

0 commit comments

Comments
 (0)