Skip to content

Commit e6ff091

Browse files
authored
Merge pull request #1 from RxSwiftCommunity/develop/rxflow-2.7
Update RxFlow to 2.7
2 parents 78dafbf + 3d6e090 commit e6ff091

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Pod install
13-
run: pod install --repo-update
13+
run: pod install --project-directory=Example --repo-update
1414
- name: Run test
1515
run: set -o pipefail && xcodebuild -workspace Example/RxController.xcworkspace -scheme RxController -sdk iphonesimulator build CODE_SIGNING_REQUIRED=NO | xcpretty -c

Example/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ PODS:
1212
- RxCocoa (5.0.1):
1313
- RxRelay (~> 5)
1414
- RxSwift (~> 5)
15-
- RxController (0.9.3):
15+
- RxController (0.10):
1616
- RxCocoa (~> 5)
17-
- RxFlow (~> 2)
17+
- RxFlow (~> 2.7)
1818
- RxSwift (~> 5)
1919
- RxDataSources (4.0.1):
2020
- Differentiator (~> 4.0)
@@ -25,7 +25,7 @@ PODS:
2525
- RxCocoa (~> 5)
2626
- RxDataSources (~> 4)
2727
- RxSwift (~> 5)
28-
- RxFlow (2.6.0):
28+
- RxFlow (2.7.0):
2929
- RxCocoa (>= 5.0.0)
3030
- RxSwift (>= 5.0.0)
3131
- RxRelay (5.0.1):
@@ -64,10 +64,10 @@ SPEC CHECKSUMS:
6464
Reusable: 82be188f29d96dc5eff0db7b2393bcc08d2cdd5b
6565
RxBinding: 58be2cf1311165489a66eacb4a3e33932d598a53
6666
RxCocoa: e741b9749968e8a143e2b787f1dfbff2b63d0a5c
67-
RxController: 376347c3573c909b05afff6ad91c27debd6382a3
67+
RxController: c596ce5b2bc9ab933649690838d60118f0e4b110
6868
RxDataSources: efee07fa4de48477eca0a4611e6d11e2da9c1114
6969
RxDataSourcesSingleSection: 4394e57ae097f33e3845cf3a57bdf7826eca2d38
70-
RxFlow: f89ea40232813062f5e857fbe19a680a205a15ab
70+
RxFlow: 605ef6364d7e937bea8f9507a1e99a431cdc2493
7171
RxRelay: 89d54507f4fd4d969e6ec1d4bd7f3673640b4640
7272
RxSwift: e2dc62b366a3adf6a0be44ba9f405efd4c94e0c4
7373
SnapKit: 97b92857e3df3a0c71833cce143274bf6ef8e5eb

RxController.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'RxController'
11-
s.version = '0.9.3'
11+
s.version = '0.10'
1212
s.summary = 'A library for developing with MVVM-C based on RxFlow and RxSwift.'
1313

1414
# This description is used to generate tags and improve search results.
@@ -29,12 +29,12 @@ These classes make it easy to transfer data among the flows, the parent view mod
2929
s.source = { :git => 'https://github.com/RxSwiftCommunity/RxController.git', :tag => s.version.to_s }
3030

3131
s.ios.deployment_target = '9.0'
32-
s.swift_versions = '5.0'
32+
s.swift_versions = '5.1'
3333
s.source_files = 'RxController/Classes/**/*'
3434
s.preserve_paths = 'rxtree/**/*'
3535

3636
s.dependency 'RxSwift', '~> 5'
3737
s.dependency 'RxCocoa', '~> 5'
38-
s.dependency 'RxFlow', '~> 2'
38+
s.dependency 'RxFlow', '~> 2.7'
3939

4040
end

0 commit comments

Comments
 (0)