You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,22 @@
1
1
# master
2
2
3
+
*Please add new entries at the top.*
3
4
4
-
# 4.0.0-rc.21. Support Swift 4.2 (Xcode 10) (#644, kudos to @ikesyo)
5
+
1.`<~` bindings now works with optional left-hand-side operands. (#642, kudos to @andersio and @Ankit-Aggarwal)
5
6
6
-
# 4.0.0-rc.1*Please add new entries at the top.*
7
+
```swift
8
+
let nilTarget: BindingTarget<Int>?=nil
9
+
10
+
// This is now a valid binding. Previously required manual
11
+
// unwrapping in ReactiveSwift 3.x.
12
+
nilTarget <~ notifications.map { $0.count }
13
+
```
14
+
15
+
# 4.0.0-rc.2
16
+
17
+
1. Support Swift 4.2 (Xcode 10) (#644, kudos to @ikesyo)
18
+
19
+
# 4.0.0-rc.1
7
20
8
21
1.`Lifetime` may now be manually ended using `Lifetime.Token.dispose()`, in addition to the existing when-token-deinitializes semantic. (#641, kudos to @andersio)
9
22
1. For Swift 4.1 and above, `BindingSource` conformances are required to have `Error` parameterized as exactly `NoError`. As a result, `Signal` and `SignalProducer` are now conditionally `BindingSource`. (#590, kudos to @NachoSoto and @andersio)
0 commit comments