All Versions
36
Latest Version
Avg Release Cycle
16 days
Latest Release
1430 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3.18.1
October 11, 2020 -
v3.18.0 Changes
August 05, 2020โฌ๏ธ Drops iOS 8 support in SPM.
-
v3.17.4
August 02, 2020 -
v3.17.3 Changes
May 20, 2020- โ Added
if
argument toretry(times:)
.
- โ Added
-
v3.17.2 Changes
May 08, 2020- ๐ Fix
Package.swift
with correct macOS version.
- ๐ Fix
-
v3.17.1 Changes
April 16, 2020- Inclusive variant of
prefix(while:)
.
- Inclusive variant of
-
v3.17.0 Changes
March 06, 2020- ๐ฑ ๐ Built-in support for Timelane ๐
๐ฆ ReactiveKit now has a built-in support for Timelane Xcode Instrument. Just download the instrument and start using the
lane
operator to send the signal data to the Timelane Instrument.mySignal .filter { ... } .lane("My Signal") .map { ... } .sink { ... }
-
v3.16.4 Changes
March 06, 2020- โ Added Combine style
Empty
struct. Thanks @ibrahimkteish!
- โ Added Combine style
-
v3.16.3 Changes
March 05, 2020- โ Added Combine style Deferred struct. Thanks @ibrahimkteish!
-
v3.16.2 Changes
February 06, 2020Introduce
publisher<Value>(for:options:)
onNSObject.reactive
extension:let player = AVPlayer() player.reactive.publisher(for: \.status).sink { print("Playback status: \($0)") }