Skip to content

Commit 2440c19

Browse files
committed
Release 0.9
1 parent 27187c1 commit 2440c19

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

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

44
---
55

6+
## [0.9](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/0.8.1)
7+
8+
#### Possibly breaking changes
9+
10+
* Adds default IdentifiableType extensions for:
11+
* String
12+
* Int
13+
* Float
14+
15+
This can break your code if you've implemented those extensions locally. This can be easily solved by just removing local extensions.
16+
17+
#### Features
18+
19+
* Swift 2.3 compatible
20+
* Improves mutability checkes. If data source is being mutated after binding, warning assert is triggered.
21+
* Deprecates `cellFactory` in favor of `configureCell`.
22+
* Improves runtime checks in DEBUG mode for correct `SectionModelType.init` implementation.
23+
24+
#### Fixes
25+
26+
* Fixes default value for `canEditRowAtIndexPath` and sets it to `false`.
27+
* Changes DEBUG asserting behavior in case multiple items with same identity are found to printing warning message to terminal. Fallbacks as before to `reloadData`.
28+
629
## [0.8.1](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/0.8.1)
730

831
#### Anomalies

RxDataSources.podspec

Lines changed: 1 addition & 1 deletion
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 = "0.8.1"
3+
s.version = "0.9"
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.

0 commit comments

Comments
 (0)