Merge commit 'e9fbae40b3042e7e8751ef45dcd6e4b0354fee18' into feature/separatorCellsRefactoring

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Anton Popkov 2017-10-12 17:14:55 +03:00
commit 7c089f0d85
2 changed files with 5 additions and 1 deletions

View File

@ -29,6 +29,10 @@
## 0.5.12
- **Fix**: Update type of `viewModel` in `ConfigurableController` to `ImplicitlyUwrappedOptional<ViewModelT>` instead of `ViewModelT`
## 0.5.13
- **Change**: Remove type erasure behavior from `AnyBaseTableRow`
- **Change**: Rename `AnyBaseTableRow` class to `SeparatorRowBox`
- **Change**: Move `anyRow` property from `EmptyCellRow` to `TableRow` extension and rename it to `separatorRowBox`.

View File

@ -26,7 +26,7 @@ public protocol ConfigurableController {
associatedtype ViewModelT
var viewModel: ViewModelT { get }
var viewModel: ViewModelT! { get }
func bindViews()