Releases: DeclarativeHub/ReactiveKit
Releases · DeclarativeHub/ReactiveKit
v3.5.2
- Fix issue with
refCount
when the count goes up for the second time.
v3.5.1
- Remove
NSObject
conformance toBindingExecutionContextProvider
.
v3.5.0
- Bindings are now not limited to main thread.
ExecutionContext
has been refactored into a struct.- Few renames in order to be consistent with Swift standard library:
replay(_:)
becomesreplay(limit:)
.flatMapLatest(transform:)
becomesflatMapLatest(_:)
.flatMapConcat(transform:)
becomesflatMapConcat(_:)
.flatMapMerge(transform:)
becomesflatMapMerge(_:)
.flatMapError(recover:)
becomesflatMapError(_:)
.filter(include:)
becomesfilter(_:)
.
- Significant README update.
v3.4.2
- Expose
bag
onNSObject
reactive extensions for backwards compatibility.
v3.4.1
- Add missing import.
v3.4.0
- Introduce
Deallocatable
andBindingExecutionContextProvider
protocols. - Implement
bind(to:)
using new protocols. - Improve documentation of various classes.
v3.3.1
- Add support for app extensions.
v3.3.0
- Additional filter overload.