Skip to content

Commit 64e8834

Browse files
UnidirectionalBinding should return non optionals (#834)
* UnidirectionalBinding should return non optionals * Update CHANGELOG.md Co-authored-by: Anders Ha <[email protected]>
1 parent 7cbe50f commit 64e8834

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# master
22
*Please add new entries at the top.*
33

4-
1. Fixed issue where `SingalProducer.try(upTo:interval:count:)` shares state between invocation of `start` on the same producer.
4+
1. The UnidirectionalBinding operator `<~` returns non optional values. (#834, kudos to @NicholasTD07)
5+
6+
1. Fixed issue where `SingalProducer.try(upTo:interval:count:)` shares state between invocation of `start` on the same producer. (#829, kudos to @sebastiangrail)
57

68
# 6.7.0
79
# 6.7.0-rc1

Sources/UnidirectionalBinding.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ extension Signal.Observer {
120120
@discardableResult
121121
public static func <~
122122
<Source: BindingSource>
123-
(observer: Signal<Value, Error>.Observer, source: Source) -> Disposable?
123+
(observer: Signal<Value, Error>.Observer, source: Source) -> Disposable
124124
where Source.Value == Value
125125
{
126126
return source.producer.startWithValues { [weak observer] in

0 commit comments

Comments
 (0)