From e26b88e61f6d230e645d6a1ac4126daf93ee773f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niil=20=C3=96hlin?= Date: Thu, 26 Sep 2019 11:40:34 +0200 Subject: [PATCH 1/3] Bump podspec --- FlowFramework.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlowFramework.podspec b/FlowFramework.podspec index bf9dd89..9fb94c7 100644 --- a/FlowFramework.podspec +++ b/FlowFramework.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FlowFramework" - s.version = "1.8.3" + s.version = "2.0.0" s.module_name = "Flow" s.summary = "Working with asynchronous flows" s.description = <<-DESC From 306b8b8152fdf248d6411566ed5f5197df1c2826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niil=20=C3=96hlin?= Date: Thu, 26 Sep 2019 11:42:02 +0200 Subject: [PATCH 2/3] Update podfile --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb97c97..34430c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# 2.0.0 + +- Remove custom Result type in favour of `Swift.Result` + # 1.8.3 -- Fix race conditions for iOS 13 for Signal and cleanup CallbackState +- Fix race conditions for iOS 13 for Signal and cleanup CallbackState - Add new combiner `driven(by:)` that makes a `ReadSignal` emit its latest readable values when the given "driver" signal fires events. The combined signal will derive its signal kind from the driver, but without write access. # 1.8.2 From 604d3e0ae2926f5b8da94eecb5e5cee6f633d352 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niil=20=C3=96hlin?= Date: Thu, 26 Sep 2019 11:45:00 +0200 Subject: [PATCH 3/3] Remove deprecated function --- Flow/UIView+Signal.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Flow/UIView+Signal.swift b/Flow/UIView+Signal.swift index 3b43ce0..397edc6 100644 --- a/Flow/UIView+Signal.swift +++ b/Flow/UIView+Signal.swift @@ -88,11 +88,6 @@ public extension UIView { return bag } } - - @available(*, deprecated, renamed: "allDescendantsSignal") - var allSubviewsSignal: ReadSignal<[UIView]> { - return allDescendantsSignal - } } private extension UIView {