Use a static enum rather than string literal for platform version
This commit is contained in:
parent
3e834f14fc
commit
983f6e5ca9
|
@ -4,7 +4,7 @@ import PackageDescription
|
|||
let package = Package(
|
||||
name: "DynamicColor",
|
||||
platforms: [
|
||||
.iOS("11.0")
|
||||
.iOS(SupportedPlatform.IOSVersion.v11)
|
||||
],
|
||||
products: [
|
||||
.library(name: "DynamicColor", targets: ["DynamicColor"]),
|
||||
|
|
Loading…
Reference in New Issue