Skip to content

Commit

Permalink
Fix repeat(when:).
Browse files Browse the repository at this point in the history
  • Loading branch information
srdanrasic committed Jun 1, 2019
1 parent e15a759 commit 35cf73d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ReactiveKit.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "ReactiveKit"
s.version = "3.12.1"
s.version = "3.12.2"
s.summary = "A Swift Reactive Programming Framework"
s.description = "ReactiveKit is a Swift framework for reactive and functional reactive programming."
s.homepage = "https://github.com/DeclarativeHub/ReactiveKit"
s.license = 'MIT'
s.author = { "Srdan Rasic" => "srdan.rasic@gmail.com" }
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.12.1" }
s.source = { :git => "https://github.com/DeclarativeHub/ReactiveKit.git", :tag => "v3.12.2" }

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
Expand Down
2 changes: 2 additions & 0 deletions Sources/SignalProtocol+Utilities.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,12 @@ extension SignalProtocol {
switch event {
case .next(let element):
observer.next(element)
completions.other = false
innerDisposable.otherDisposable?.dispose()
innerDisposable.otherDisposable = other(element).observe { otherEvent in
switch otherEvent {
case .next:
completions.me = false
attempt?()
case .completed:
completions.other = true
Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.12.1</string>
<string>3.12.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 35cf73d

Please sign in to comment.