Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Jun 13, 2018
1 parent 513807b commit 0a87d62
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Master

## [1.0.2](https://github.com/kzaher/RxFeedback/releases/tag/1.0.3)

* Fixes problem with feedback loop termination.

## [1.0.2](https://github.com/kzaher/RxFeedback/releases/tag/1.0.2)

* Fixes duplicated plist inclusion.
Expand Down
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "ReactiveX/RxSwift" "4.0.0"
github "ReactiveX/RxSwift" "4.2.0"
4 changes: 2 additions & 2 deletions RxFeedback.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxFeedback"
s.version = "1.0.2"
s.version = "1.0.3"
s.summary = "Simplest architecture for RxSwift. State + feedback loops."
s.description = <<-DESC
Simplest architecture for RxSwift. State + feedback loops.
Expand Down Expand Up @@ -45,4 +45,4 @@ Pod::Spec.new do |s|

s.dependency 'RxSwift', '~> 4.0'
s.dependency 'RxCocoa', '~> 4.0'
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Support/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.0.3</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/RxFeedbackTests/RxFeedbackDriverTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ extension RxFeedbackDriverTests {
return timer.map { _ in 1 }
})

let mockUIBindings: Feedback = bind { state in
let mockUIBindings: Feedback = RxFeedback.bind { (state: Driver<State>) in
let subscriptions: [Disposable] = [
state.drive(onNext:{ subscriptionState.append($0) })
]
Expand Down
2 changes: 1 addition & 1 deletion Tests/RxFeedbackTests/RxFeedbackObservableTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ extension RxFeedbackObservableTests {
return timer.map { _ in 1 }
})

let mockUIBindings: Feedback = bind { state in
let mockUIBindings: Feedback = RxFeedback.bind { state in
let subscriptions: [Disposable] = [
state
.do(onDispose: { subscriptionIsDisposed = true })
Expand Down
12 changes: 6 additions & 6 deletions dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#set -e
#if [[ ( ! -d "RxSwift/.git" ) && ( ! -d "Carthage" ) && ( ! -d 'Pods' ) ]]; then
# git submodule update --init --recursive --force
# cd RxSwift
# git reset origin/master --hard
#fi
set -e
if [[ ( ! -d "RxSwift/.git" ) && ( ! -d "Carthage" ) && ( ! -d 'Pods' ) ]]; then
git submodule update --init --recursive --force
cd RxSwift
git reset origin/master --hard
fi

0 comments on commit 0a87d62

Please sign in to comment.