Releases: RxSwiftCommunity/RxAlamofire
Releases · RxSwiftCommunity/RxAlamofire
🔥🔥RxHotness🔥🔥
Added
- Support for Swift 3.0
- Support for Alamofire 4.0
- Support for RxSwift 3.0.0.beta1
Changed
- Replaces rx_* prefix with rx.* extensions. in order to be consistent with RxCocoa extensions
- Renamed some methods and parameters names to be consistent with Alamofire 4.0 and Swift 3.0 e.g. :
//Before
_ = manager.rx.JSON(.Get, stringURL)
.observeOn(MainScheduler.instance)
.subscribe { print($0) }
//After
_ = manager.rx.json(.get, stringURL)
.observeOn(MainScheduler.instance)
.subscribe { print($0) }