Hi,
I am switching my project to Swift 3.0, however I found the Result Library which required by RAC is still "2.1.3".
My Cartfile only has this line github "ReactiveCocoa/ReactiveCocoa"
Is there anything I did wrong with Carthage.
Thanks.
There's no ReactiveCocoa release for Swift 3 yet, so Carthage takes the latest release, v4.2.2, which is still for Swift 2.3, and which requires Result 2.1.3.
Try specifying the master branch of ReactiveCocoa like this
github "ReactiveCocoa/ReactiveCocoa" "master"
For me, this checks out Result at 3.0.0 as expected.
Keep in mind that ReactiveCocoa is not yet "done" for Swift 3, have a look at this comment for some useful information.
Thank you.
Most helpful comment
There's no ReactiveCocoa release for Swift 3 yet, so Carthage takes the latest release, v4.2.2, which is still for Swift 2.3, and which requires Result 2.1.3.
Try specifying the master branch of ReactiveCocoa like this
For me, this checks out Result at 3.0.0 as expected.