Skip to content

Commit b2b4b01

Browse files
committed
Updates for new release.
1 parent d727401 commit b2b4b01

File tree

265 files changed

+5006
-2628
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+5006
-2628
lines changed

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" "3.1.0"
1+
github "ReactiveX/RxSwift" "3.4.0"

Example/Example1_CustomizationUsingTableViewDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class CustomizationUsingTableViewDelegate : UIViewController {
6767
]
6868

6969
Observable.just(sections)
70-
.bindTo(tableView.rx.items(dataSource: dataSource))
70+
.bind(to: tableView.rx.items(dataSource: dataSource))
7171
.addDisposableTo(disposeBag)
7272

7373
tableView.rx.setDelegate(self)

Example/Example2_RandomizedSectionsAnimation.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ class ViewController: UIViewController {
5151
skinTableViewDataSource(reloadDataSource)
5252

5353
randomSections
54-
.bindTo(animatedTableView.rx.items(dataSource: tvAnimatedDataSource))
54+
.bind(to: animatedTableView.rx.items(dataSource: tvAnimatedDataSource))
5555
.addDisposableTo(disposeBag)
5656

5757
randomSections
58-
.bindTo(tableView.rx.items(dataSource: reloadDataSource))
58+
.bind(to: tableView.rx.items(dataSource: reloadDataSource))
5959
.addDisposableTo(disposeBag)
6060

6161
let cvAnimatedDataSource = RxCollectionViewSectionedAnimatedDataSource<NumberSection>()
6262
skinCollectionViewDataSource(cvAnimatedDataSource)
6363

6464
randomSections
65-
.bindTo(animatedCollectionView.rx.items(dataSource: cvAnimatedDataSource))
65+
.bind(to: animatedCollectionView.rx.items(dataSource: cvAnimatedDataSource))
6666
.addDisposableTo(disposeBag)
6767

6868
// touches

Example/Example3_TableViewEditing.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class EditingExampleViewController: UIViewController {
5050
$0.sections
5151
}
5252
.shareReplay(1)
53-
.bindTo(tableView.rx.items(dataSource: dataSource))
53+
.bind(to: tableView.rx.items(dataSource: dataSource))
5454
.addDisposableTo(disposeBag)
5555
}
5656

Example/Example4_DifferentSectionAndItemTypes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class MultipleSectionModelViewController: UIViewController {
3434
skinTableViewDataSource(dataSource)
3535

3636
Observable.just(sections)
37-
.bindTo(tableView.rx.items(dataSource: dataSource))
37+
.bind(to: tableView.rx.items(dataSource: dataSource))
3838
.addDisposableTo(disposeBag)
3939
}
4040

Podfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
2-
- RxCocoa (3.1.0):
3-
- RxSwift (~> 3.1)
4-
- RxSwift (3.1.0)
2+
- RxCocoa (3.4.0):
3+
- RxSwift (~> 3.4)
4+
- RxSwift (3.4.0)
55

66
DEPENDENCIES:
77
- RxCocoa (from `[email protected]:ReactiveX/RxSwift.git`, branch `master`)
@@ -17,16 +17,16 @@ EXTERNAL SOURCES:
1717

1818
CHECKOUT OPTIONS:
1919
RxCocoa:
20-
:commit: b98fae65fbec38efe085002515b425e3e0a3b45a
20+
:commit: 1048219ea8ed777ee7b2655888caae6f61268f7c
2121
:git: [email protected]:ReactiveX/RxSwift.git
2222
RxSwift:
23-
:commit: b98fae65fbec38efe085002515b425e3e0a3b45a
23+
:commit: 1048219ea8ed777ee7b2655888caae6f61268f7c
2424
:git: [email protected]:ReactiveX/RxSwift.git
2525

2626
SPEC CHECKSUMS:
27-
RxCocoa: da4a5077d722bc0dbf84a3414b01b4c1364deb7f
28-
RxSwift: b48232c989e04b3ce1d5936db8d30fbfb11cd26d
27+
RxCocoa: 340254e41293a97d2be220592ea7d1e73980b1d5
28+
RxSwift: c744f5eb1c13a8acce49bb40fda553da7bf31046
2929

3030
PODFILE CHECKSUM: 29bf31f6a813ce527b77481cfb115102d889c025
3131

32-
COCOAPODS: 1.2.0.beta.1
32+
COCOAPODS: 1.2.0

Pods/Local Podspecs/RxCocoa.podspec.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Local Podspecs/RxSwift.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/Manifest.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)