10.0.0
版本发布时间: 2019-04-28 06:36:39
ReactiveCocoa/ReactiveCocoa最新发布版本:12.0.0(2021-11-20 22:26:26)
This is the first release of ReactiveCocoa 10.0. It supports Xcode 10.2 and Swift 5.0.
Changes
- Update ReactiveSwift to 6.0.
- Remove dependency on antitypical/Result.
Migration notes
- If you have used
Result
only as dependency ofReactiveSwift
, remove all instances ofimport Result
,import enum Result.NoError
orimport struct Result.AnyError
and remove theResult
Framework from your project. - Replace all cases where
NoError
was used in aSignal
orSignalProducer
withNever
- Replace all cases where
AnyError
was used in aSignal
orSignalProducer
withSwift.Error