bitstadium / HockeySDK-iOS

HockeyApp was retired and the SDKs are deprecated. Please use App Center instead.
https://github.com/microsoft/appcenter-sdk-apple
Other
597 stars 268 forks source link

Cocoapods only updates to 5.1.2 #544

Closed philhinco closed 5 years ago

philhinco commented 5 years ago

Hello

I was in the process of updating the CocoaPods in our project. I have the following in my Podfile:

pod 'HockeySDK'

I ran pod update HockeySDK to update HockeySDK.

I ran pod outdated, which gave me the following output for HockeySDK:

The following pod updates are available:

  • HockeySDK 5.1.2 -> 5.1.2 (latest version 5.1.4)

Now I was wondering why it wouldn't update to 5.1.4, because I haven't specified a version in my Podfile.

I hope you can help me out with that.

I'm pretty certain that adding a ~> 5.1.4 would probably install 5.1.4, but I'd expect that not having that would also update to the most recent version

jaeklim commented 5 years ago

What version of pod are you using? It might be caused by CocoaPods cache, you can try to delete all cache and run pod update HockeySDK. This link might be helpful to you to delete cache.

philhinco commented 5 years ago

@jaelim-ms Things have cleared up. I had iOS 8 set as my minimum deployment target and hadn't noticed that HockeySDK 5.1.3 has upped that target to iOS 9.

After updating the target to iOS 9 in my Podfile the update to 5.1.4 was available.

I'll close this here as the issue has been resolved on my side.

jaeklim commented 5 years ago

Ah.. I see. Thanks for getting it back to me.