I am updating my project to Swift 3. When updating some of my cocoapods to swift 3, I receive the following message in terminal, after running pod install:
When I opened my xcodeproj file it displayed 3.2, but when I ran git diff, I noticed that the project.pbxproj had everything as Swift 3.0.
xcodeproj
3.2
git diff
project.pbxproj
Manually updating the SWIFT_VERSION variables to 3.2 with a text editor solved the discrepancy.
SWIFT_VERSION
I recommend this as a last resort only!