ReactiveCocoa: 4.0.1 possibly breaks semver?
Since 4.0.1 removes the NoError type in favor of Result’s implementation, after carthage update from version 4.0.0, none of my files with:
import ReactiveCocoa, noimport Result, andNoErrorused somewhere.- explicit
ReactiveCocoa.NoErrorreferenced (which I originally added to fix compiler ambiguity in files with bothimport ReactiveCocoaandimport Resultwhen usingReactiveCocoa4.0.0andResult1.0.2, both of which defineNoError).
…compile anymore. For the first, I need to add import Result, and for the second I need to remove the ReactiveCocoa. prefix.
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 15 (14 by maintainers)
It seems that this works:
but this doesn’t:
I didn’t even know
import enumwas a thing!