Skip to content

Commit

Permalink
Release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Jun 16, 2017
1 parent 3b1e841 commit edd39e2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

---

## [1.0.4](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/1.0.4)

#### Anomalies
* Fixed crash that happened when using a combination of `estimatedHeightForRow` and `tableFooterView`. #129

## [1.0.3](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/1.0.3)

#### Anomalies
Expand Down
9 changes: 5 additions & 4 deletions RxDataSources.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxDataSources"
s.version = "1.0.3"
s.version = "1.0.4"
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
s.description = <<-DESC
This is a collection of reactive data sources for UITableView and UICollectionView.
Expand All @@ -19,12 +19,13 @@ dataSource.cellFactory = { (tv, ip, i) in
// animated
data
.bindTo(animatedTableView.rx.items(dataSource: dataSource))
.addDisposableTo(disposeBag)
.bind(to: animatedTableView.rx.items(dataSource: dataSource))
.disposed(by: disposeBag)
// normal reload
data
.bindTo(tableView.rx.items(dataSource: dataSource)).disposed(by: disposeBag)
.bind(to: tableView.rx.items(dataSource: dataSource))
.disposed(by: disposeBag)
```
DESC
s.homepage = "https://github.com/ReactiveX/RxSwift"
Expand Down
2 changes: 1 addition & 1 deletion RxDataSources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.0.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit edd39e2

Please sign in to comment.