As expected, building for Mac Catalyst with the Xcode 13 release candidate uses the iOS 14 SDK. However it uses Swift 5.5. I’ve just updated all our usage of new API to guarded by:

#if swift(>=5.5) && !targetEnvironment(macCatalyst)
...
#endif