malcommac / SwiftDate

🐔 Toolkit to parse, validate, manipulate, compare and display dates, time & timezones in Swift.
MIT License
7.64k stars 770 forks source link

Minimum iOS deployment version to 9.0 (not 12) and tvOS 9 (not 12) #763

Closed qcasxy closed 4 years ago

qcasxy commented 4 years ago

I use Carthage to manage my dependencies. I just upgraded SwiftDate to V6.3.0 I got an error Compiling for iOS 11.0, but module 'SwiftDate' has a minimum deployment target of iOS 12.0 I think you are using the default minimum support for Xcode12. Can you change the configuration? I need minimum support for iOS 11.0+ image

cameronehrlich commented 4 years ago

@qcasxy A work around appears to be locking the version at v6.1.0 in your Cartfile.

Screen Shot 2020-11-18 at 4 21 50 PM
qcasxy commented 4 years ago

@qcasxy A work around appears to be locking the version at v6.1.0 in your Cartfile.

Screen Shot 2020-11-18 at 4 21 50 PM

Yes, you're right. That's what I'm doing now. But this is not a long-term solution.