Denys Telezhkin
Denys Telezhkin
SPM in Xcode 12 bumps minimum iOS deployment target to iOS 9, which produces warnings when trying to use Dwifft. This PR fixes that by deleting minimum supported platforms from...
Currently with Xcode 12 using Changeset produces warning: ``` The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to...
Unlike CocoaPods, SPM platforms only specify minimum supported deployment targets, and it's recommended to only specify platforms, if minimum supported deployment target is **higher** than Xcode's, which is not the...
**Bug Report** * TwitterKit/TwitterCore Version Number: 3.3.0/3.1.0 * CocoaPods 1.4.0.rc.1 Hey! This will be more of descriptive issue of things i think i found out today while integrating TwitterKit into...
First of all, thanks for really awesome framework, it looks much better than monstrous MagicalRecord. I'm using ObjectiveRecord in one of my project, and it takes advantage of NSFetchedResultsController to...
When sending SMS when processing network request, eventLoop is ensured by SwiftNIO, which crashes Vapor app when alternative eventLoop is used. This PR adds `on eventLoop`parameter to `send(_:)` method, but...