How to check version of a CocoaPods framework
pod outdated
When you run pod outdated, CocoaPods will list all pods that have newer versions that the ones listed in the Podfile.lock (the versions currently installed for each pod) and that could be updated (as long as it matches the restrictions like pod 'MyPod', '~>x.y' set in your Podfile)
To check version of cocoapods from terminal:
For Sudoless:
gem which cocoapods
For Sudo:
sudo gem which cocoapods
Also note: If you want to edit podfile or podfile.lock don't edit it in editors. Open only with XCode.
pod --version
to get the version of installed pod
The Podfile.lock
keeps track of the resolved versions of each Pod installed. If you want to double check that FlurrySDK is using 4.2.3, check that file.
Note: You should not edit this file. It is auto-generated when you run pod install
or pod update