Search code examples
iosxcodexcode7cocoapods

CococaPods: List all versions of a pod ever released and see version history


I have this pod in my Podfile:

pod 'Cartography', '~> 0.6.0’

I want to know how I can find out about all versions of this Pod that have ever been released. The end goal is to see if I can find a version that is written in Swift 2.3 (released June 12, 2016) so I can upgrade the pod from XCode 7 to XCode 8. I don't necessarily want the latest version - I want one that is going to work with Swift 2.3

Cocoapods shows that the most recent version is 0.7.0

How can I see a history of all released versions and the date of when they were released?


Solution

  • Maybe this helps you. Check out the GitHub page of the pod.

    https://github.com/robb/Cartography/releases

    You can test each version and see if it works with 2.3, but in most pods the developer will write a comment of compatibility in the description of the release.