CocoaPods unable to update ScoutMaps-iOS-SDK pod -


the current (installed) version of scoutmaps-ios-sdk 2.4 , i'm trying updated latest version 2.5.

however not updating neither failing.

i've run command:

pod update 

the output was:

downloading dependencies using afdownloadrequestoperation (2.0.1) installing afnetworking 2.5.4 (was 2.5.3) using hmsegmentedcontrol (1.5.1) using mbprogresshud (0.9.1) using reachability (3.2) using swrevealviewcontroller (2.3.0) using scoutmaps-ios-sdk (2.4.0) using scoutmaps-ios-sdktools (2.4.0) using ziparchive (1.4.0) generating pods project integrating client project 

if run command:

pod outdated 

the output (even after executing pod update):

updating spec repositories analyzing dependencies following pod updates available: - scoutmaps-ios-sdk 2.4.0 -> 2.4.0 (latest version 2.5) 

the contents of podfile following:

platform :ios, '7.1'  inhibit_all_warnings!  target 'mytarget'  pod 'scoutmaps-ios-sdk' pod 'scoutmaps-ios-sdktools' pod 'afnetworking', '~> 2.5' pod 'mbprogresshud', '~> 0.9' pod 'swrevealviewcontroller', '~> 2.3' pod 'hmsegmentedcontrol'  end 

what causing issue? know how fix it?

ps: tried "clean" install, output of pod outdated still same.

the reason scoutmaps-ios-sdk dependency of scoutmaps-ios-sdktools , scoutmaps-ios-sdktools hasn't been updated 2.5.

the spec scoutmaps-ios-sdktools 2.4 has below dependency, meaning 2.4 version of scoutmaps-ios-sdk can used, not 2.5.

"dependencies": {     "scoutmaps-ios-sdk": [       "~> 2.4.0"     ],     ... } 

Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -