Skip to content

Commit edd39e2

Browse files
committed
Release 1.0.4
1 parent 3b1e841 commit edd39e2

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
---
55

6+
## [1.0.4](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/1.0.4)
7+
8+
#### Anomalies
9+
* Fixed crash that happened when using a combination of `estimatedHeightForRow` and `tableFooterView`. #129
10+
611
## [1.0.3](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/1.0.3)
712

813
#### Anomalies

RxDataSources.podspec

Lines changed: 5 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.3"
3+
s.version = "1.0.4"
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.
@@ -19,12 +19,13 @@ dataSource.cellFactory = { (tv, ip, i) in
1919
2020
// animated
2121
data
22-
.bindTo(animatedTableView.rx.items(dataSource: dataSource))
23-
.addDisposableTo(disposeBag)
22+
.bind(to: animatedTableView.rx.items(dataSource: dataSource))
23+
.disposed(by: disposeBag)
2424
2525
// normal reload
2626
data
27-
.bindTo(tableView.rx.items(dataSource: dataSource)).disposed(by: disposeBag)
27+
.bind(to: tableView.rx.items(dataSource: dataSource))
28+
.disposed(by: disposeBag)
2829
```
2930
DESC
3031
s.homepage = "https://github.com/ReactiveX/RxSwift"

RxDataSources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.2</string>
18+
<string>1.0.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)