You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the latest version 0.14.2 in my Podfile:
pod 'CoreXLSX', '0.14.2'
gives an error when using pod update:
[!] CocoaPods could not find compatible versions for pod "CoreXLSX":
In Podfile:
CoreXLSX (= 0.14.2)
None of your spec sources contain a spec satisfying the dependency: `CoreXLSX (= 0.14.2)`.
Expected behavior
Have the latest version available on Cocoapods.
File for reproduction
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered:
I've managed to get version 0.14.2 in my Xcode project by changing the Podfile to directly link to the commit:
# pod 'CoreXLSX', '0.14.2'# Version 0.14.2 is not available on Cocoapods (https://github.com/CoreOffice/CoreXLSX/issues/182).# Hence use the commit of version 0.14.2 (https://github.com/CoreOffice/CoreXLSX/releases/tag/0.14.2):pod'CoreXLSX',:git=>'https://github.com/CoreOffice/CoreXLSX.git',:commit=>'1391f3832ea2eeee5186ea8abb81ea49ed0609cc'
The output of pod update makes it clear that someone forgot to update the version tag of 0.14.2, as it still shows 0.14.1:
Updating local specs repositories
Analyzing dependencies
Pre-downloading: `CoreXLSX` from `https://github.com/CoreOffice/CoreXLSX.git`, commit `1391f3832ea2eeee5186ea8abb81ea49ed0609cc`
Downloading dependencies
Installing CoreXLSX 0.14.1 <- Should be 0.14.2
Generating Pods project
Version
0.14.2
Description of the bug
Latest version 0.14.2 is not available on Cocoapods: https://cocoapods.org/pods/CoreXLSX
That has version 0.14.1 as latest.
Steps to reproduce
When using the latest version 0.14.2 in my Podfile:
gives an error when using
pod update
:Expected behavior
Have the latest version available on Cocoapods.
File for reproduction
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: