From da98b9892fb8b3e55baf2254d14893f1d3c7ca36 Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Thu, 6 Oct 2016 02:09:01 +0300 Subject: [PATCH] add changelog --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b1c4667 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Change Log + +All notable changes to this project will be documented in this file. + +## [1.4.0](https://github.com/maxsokolov/TableKit/releases/tag/1.4.0) +Released on 2016-09-06. Breaking changes in 1.4.0: +The signatures of `TableRow` and `TableRowAction` classes were changed from +```swift +let action = TableRowAction(.click) { (data) in +} + +let row = TableRow(item: "some string", actions: [action]) +``` +to +```swift +let action = TableRowAction(.click) { (data) in +} + +let row = TableRow(item: "some string", actions: [action]) +``` +This is the great improvement that comes from the community. Thanks a lot! + +## [1.3.0](https://github.com/maxsokolov/TableKit/releases/tag/1.3.0) +Released on 2016-09-04. Swift 3.0 support. + +## [0.1.0](https://github.com/maxsokolov/TableKit/releases/tag/0.1.0) +Released on 2015-11-15. Initial release called Tablet. \ No newline at end of file