Change Log

All notable changes to this project will be documented in this file.

2.10.0

Released on 2019-09-29.

2.9.0

Released on 2019-04-04.

2.8.0

Released on 2018-09-30.

2.5.0

Released on 2017-09-24.

2.3.0

Released on 2016-11-16.

2.1.0

Released on 2016-10-19.

2.0.0

Released on 2016-10-06. Breaking changes in 2.0.0:
The signatures of TableRow and TableRowAction classes were changed from

let action = TableRowAction<String, StringTableViewCell>(.click) { (data) in
}

let row = TableRow<String, StringTableViewCell>(item: "some string", actions: [action])

to

let action = TableRowAction<StringTableViewCell>(.click) { (data) in
}

let row = TableRow<StringTableViewCell>(item: "some string", actions: [action])

This is the great improvement that comes from the community. Thanks a lot!

1.3.0

Released on 2016-09-04. Swift 3.0 support.

0.1.0

Released on 2015-11-15. Initial release called Tablet.