The fastest supported Swift deployment target is OS X 10.9 and iOS 7. This does not change in Swift 2.
Some APIs, however, are only available in later versions of these operating systems. I suspect this is what you mean:
documentation that states OS X 10.10 or later is available in simple NS class documents
( . , , , "Swift ".)
Swift 2 API #available. Xcode:
if
// Use Handoff APIs when available.
let activity = NSUserActivity(activityType:"com.example.ShoppingList.view")
activity.becomeCurrent()
} else {
// Fall back when Handoff APIs not available.
}