File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# master
2
+
3
+ 1 . Fixed issue with ` SignalProducer.Type.interval() ` making Swift 5.3 a requirement. (#823 kudos to @mluisbrown )
4
+
2
5
* Please add new entries at the top.*
3
6
4
7
# 6.6.0
Original file line number Diff line number Diff line change @@ -3081,7 +3081,9 @@ extension SignalProducer where Error == Never {
3081
3081
)
3082
3082
}
3083
3083
}
3084
+ }
3084
3085
3086
+ extension SignalProducer where Error == Never , Value == Int {
3085
3087
/// Creates a producer that will send the sequence of all integers
3086
3088
/// from 0 to infinity, or until disposed.
3087
3089
///
@@ -3098,7 +3100,7 @@ extension SignalProducer where Error == Never {
3098
3100
public static func interval(
3099
3101
_ interval: DispatchTimeInterval ,
3100
3102
on scheduler: DateScheduler
3101
- ) -> SignalProducer where Value == Int {
3103
+ ) -> SignalProducer {
3102
3104
. interval( 0 ... , interval: interval, on: scheduler)
3103
3105
}
3104
3106
}
You can’t perform that action at this time.
0 commit comments