version bump

This commit is contained in:
John Estropia
2023-06-08 11:02:14 +09:00
parent 7988d98b92
commit a8bd937c68
7 changed files with 21 additions and 17 deletions

View File

@@ -1215,9 +1215,14 @@ extension NSAttributeType: CoreStoreDebugStringConvertible {
case .objectIDAttributeType: return ".objectIDAttributeType"
case .UUIDAttributeType: return ".UUIDAttributeType"
case .URIAttributeType: return ".URIAttributeType"
#if swift(>=5.9) // Xcode 15 (iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0)
case .compositeAttributeType: return ".compositeAttributeType"
#endif
@unknown default:
fatalError()
fatalError()
}
}
}