ivnsch / SwiftCharts

Easy to use and highly customizable charts library for iOS
Apache License 2.0
2.53k stars 410 forks source link

Podfile spec '~> 0.6.1' is not working #322

Closed SergMykhailov closed 6 years ago

SergMykhailov commented 6 years ago

Hello I'm trying to integrate your charts library into my project written in Swift 4 I've added podfile spec which was shown in guide: pod 'SwiftCharts', '~> 0.6.1' but seems that it's not working. I get the following error:

[!] Unable to satisfy the following requirements:

When I set version of the library to 0.6 like shown below everything goes fine pod 'SwiftCharts', '0.6' but this version of library is not compatible with Swift 4 Could you please verify this issue. Maybe I'm doing something unproperly

Thank you Serg

ivnsch commented 6 years ago

Execute pod search SwiftCharts in the terminal and see if 0.6.1 appears. If not, use pod repo update and try again.

SergMykhailov commented 6 years ago

pod repo update helped thank you for help