Skip to content

Commit 8f43513

Browse files
committed
Release 1.0.0
1 parent d5af638 commit 8f43513

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" "3.0.0-rc.1"
1+
github "ReactiveX/RxSwift" ~> 3.0

RxDataSources.podspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxDataSources"
3-
s.version = "1.0.0-rc.2"
3+
s.version = "1.0.0"
44
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
55
s.description = <<-DESC
66
This is a collection of reactive data sources for UITableView and UICollectionView.
@@ -12,19 +12,19 @@ let data: Obserable<Section> = ...
1212
1313
let dataSource = RxTableViewSectionedAnimatedDataSource<Section>()
1414
dataSource.cellFactory = { (tv, ip, i) in
15-
let cell = tv.dequeueReusableCellWithIdentifier("Cell") ?? UITableViewCell(style:.Default, reuseIdentifier: "Cell")
15+
let cell = tv.dequeueReusableCell(withIdentifier: "Cell") ?? UITableViewCell(style:.Default, reuseIdentifier: "Cell")
1616
cell.textLabel!.text = "\(i)"
1717
return cell
1818
}
1919
2020
// animated
2121
data
22-
.bindTo(animatedTableView.rx_items(dataSource: dataSource))
22+
.bindTo(animatedTableView.rx.items(dataSource: dataSource))
2323
.addDisposableTo(disposeBag)
2424
2525
// normal reload
2626
data
27-
.bindTo(tableView.rx_itemsWithDataSource(dataSource))
27+
.bindTo(tableView.rx.items(dataSource: dataSource))
2828
.addDisposableTo(disposeBag)
2929
```
3030
DESC
@@ -40,6 +40,6 @@ data
4040

4141
s.source_files = 'Sources/**/*.swift'
4242

43-
s.dependency 'RxSwift', '~> 3.0.0-rc.1'
44-
s.dependency 'RxCocoa', '~> 3.0.0-rc.1'
43+
s.dependency 'RxSwift', '~> 3.0'
44+
s.dependency 'RxCocoa', '~> 3.0'
4545
end

0 commit comments

Comments
 (0)