Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 2.0.0

- Remove custom Result type in favour of `Swift.Result`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't there some code related to this to be removed in this PR? Some deprecations?


# 1.8.3

- Fix race conditions for iOS 13 for Signal and cleanup CallbackState<Value>
- Fix race conditions for iOS 13 for Signal and cleanup CallbackState<Value>
- 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
Expand Down
5 changes: 0 additions & 5 deletions Flow/UIView+Signal.swift
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@ public extension UIView {
return bag
}
}

@available(*, deprecated, renamed: "allDescendantsSignal")
var allSubviewsSignal: ReadSignal<[UIView]> {
return allDescendantsSignal
}
}

private extension UIView {
Expand Down
2 changes: 1 addition & 1 deletion FlowFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "FlowFramework"
s.version = "1.8.3"
s.version = "2.0.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The FlowTests plist should also be updated. Are you using agvtool?

s.module_name = "Flow"
s.summary = "Working with asynchronous flows"
s.description = <<-DESC
Expand Down