How to set deployment target of Swift Package to iOS 14 & macOS 11?


I'm trying to set the deployment target of my internal Swift Package(s) to iOS 14 and macOS 11. I want to do this, so I don't have to add availability checks all over the place since the app will require iOS 14/macOS 11. The following package definition works if I use .v13 & .v10_15. I've tried Command-Clicking the version to go to where it is defined, and see what the new values are, but that doesn't work correctly.

Code Block
let package = Package(
    name: "MyPackageName",
    platforms: [
        .iOS(.v14),
        .macOS(.v10_16)
    ],
    products: ...


How to set deployment target of Swift Package to iOS 14 & macOS 11?
 
 
Q