Skip to content

Commit

Permalink
Adding a Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mergesort committed Sep 27, 2017
1 parent a0d43c3 commit 12cc24b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Change Log

# 1.2 (2017-09-27)

- `animateTableView()` and `animateCells()` have been renamed to `animate()` and are differentiated based on the parameter passed in.

- Adding a completion handler when `reloadData(inPlace: animated:)` is called synchronously.

- `reloadData(smoothly: animated:)` has been renamed `reloadData(inPlace: animated:)`

- A fix for `animateWithFade()` potentially calling it's completion block multiple times.

# 1.1 (2017-08-27)

This release updates behavior that cell animations will fire their completion block after all the cell animations have completed, not after each individual animation.

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.


# 1.0.1 (2017-08-27)

This update adds an `indexPaths` parameter to `func animateCells`.

~`func animateCells(animation: TableViewAnimation.Cell, completion: (() -> Void)? = nil)`~

`func animateCells(animation: TableViewAnimation.Cell, indexPaths: [IndexPath]? = nil, completion: (() -> Void)? = nil)`

This change is non-breaking, since `indexPaths` parameter is optional. Your old code should continue to work as it did before.



# 1.0 (2016-11-15)

Initial release.

0 comments on commit 12cc24b

Please sign in to comment.