Releases: ReSwift/ReactiveReSwift
Releases · ReSwift/ReactiveReSwift
5.0
4.1
Breaking API Changes:
SubscriptionReferenceType
is no longer represented asOptional
when returned from subscriptions.
API Changes:
- Added the
concatReducers
function to allow for easy concatenation of reducers. - Changed the
dispatch
functions onStore
from public to open.
4.0.1
Swift 4 compatibility
This release is updated to work with Swift 4.
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
Breaking API Changes:
- Remove StoreType - @Qata
- Remove
stateType:
label fromStore.init
(this was required for StoreType to work) - @Qata - Change DispatchQueue handling location from Store to ObservableProperty - @Qata
API Changes:
- Add the
dispatchQueue:
argument to the initialiser. The queue is a DispatchQueue which is used as the execution context for - @Qata - Use default arguments in the main initialiser and remove the convenience initialiser (Swift autogenerates convenience initialisers when default arguments are used) - @Qata
- Add
map(_:)
,distinct(_:)
anddistinct()
toObservableProperty
- @Qata