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 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 { 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