Skip to content

Commit cec0c3c

Browse files
committed
Release 1.0.0-beta.3.
1 parent e55b725 commit cec0c3c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

RxDataSources.podspec

Lines changed: 4 additions & 4 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-beta.2"
3+
s.version = "1.0.0-beta.3"
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,7 +12,7 @@ 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.dequeueReusableCellWithIdentifier("Cell") ?? UITableViewCell(style:.Default, reuseIdentifier: "Cell")
1616
cell.textLabel!.text = "\(i)"
1717
return cell
1818
}
@@ -40,6 +40,6 @@ data
4040

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

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

0 commit comments

Comments
 (0)