Skip to content

Commit 12cc24b

Browse files
committed
Adding a Changelog
1 parent a0d43c3 commit 12cc24b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Change Log
2+
3+
# 1.2 (2017-09-27)
4+
5+
- `animateTableView()` and `animateCells()` have been renamed to `animate()` and are differentiated based on the parameter passed in.
6+
7+
- Adding a completion handler when `reloadData(inPlace: animated:)` is called synchronously.
8+
9+
- `reloadData(smoothly: animated:)` has been renamed `reloadData(inPlace: animated:)`
10+
11+
- A fix for `animateWithFade()` potentially calling it's completion block multiple times.
12+
13+
# 1.1 (2017-08-27)
14+
15+
This release updates behavior that cell animations will fire their completion block after all the cell animations have completed, not after each individual animation.
16+
17+
It is not a minor semantic version bump because while it is a bug fix, it produces a change in behavior which some people may have been relying on.
18+
19+
20+
# 1.0.1 (2017-08-27)
21+
22+
This update adds an `indexPaths` parameter to `func animateCells`.
23+
24+
~`func animateCells(animation: TableViewAnimation.Cell, completion: (() -> Void)? = nil)`~
25+
26+
`func animateCells(animation: TableViewAnimation.Cell, indexPaths: [IndexPath]? = nil, completion: (() -> Void)? = nil)`
27+
28+
This change is non-breaking, since `indexPaths` parameter is optional. Your old code should continue to work as it did before.
29+
30+
31+
32+
# 1.0 (2016-11-15)
33+
34+
Initial release.

0 commit comments

Comments
 (0)