Skip to content

Commit 35cf73d

Browse files
committed
Fix repeat(when:).
1 parent e15a759 commit 35cf73d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

ReactiveKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveKit"
3-
s.version = "3.12.1"
3+
s.version = "3.12.2"
44
s.summary = "A Swift Reactive Programming Framework"
55
s.description = "ReactiveKit is a Swift framework for reactive and functional reactive programming."
66
s.homepage = "https://github.com/DeclarativeHub/ReactiveKit"
77
s.license = 'MIT'
88
s.author = { "Srdan Rasic" => "[email protected]" }
9-
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.12.1" }
9+
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.12.2" }
1010

1111
s.ios.deployment_target = '8.0'
1212
s.osx.deployment_target = '10.11'

Sources/SignalProtocol+Utilities.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,12 @@ extension SignalProtocol {
8181
switch event {
8282
case .next(let element):
8383
observer.next(element)
84+
completions.other = false
8485
innerDisposable.otherDisposable?.dispose()
8586
innerDisposable.otherDisposable = other(element).observe { otherEvent in
8687
switch otherEvent {
8788
case .next:
89+
completions.me = false
8890
attempt?()
8991
case .completed:
9092
completions.other = true

Supporting Files/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.12.1</string>
18+
<string>3.12.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)