From ea98e1b41ceb62d57509f73704bed53e38a97be2 Mon Sep 17 00:00:00 2001 From: James Sherlock Date: Tue, 6 Dec 2016 12:37:27 -0800 Subject: [PATCH] Update CHANGELOG.md Summary: For the sake of completion I added commit/pr numbers to the rest of the changelog Finishes https://github.com/Instagram/IGListKit/issues/278 - [x] All tests pass. Demo project builds and runs. - [x] I added tests, an experiment, or detailed why my change isn't tested. - [x] I have reviewed the [contributing guide] (https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) - [x] Have a real need to complete minor things Closes https://github.com/Instagram/IGListKit/pull/293 Differential Revision: D4286735 Pulled By: jessesquires fbshipit-source-id: 907eec77cc54086daeb52c7c23a097c74f6d0422 --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ece80d5..d0aeee8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,7 @@ You can find a [migration guide here](https://instagram.github.io/IGListKit/migr - `IGListDiffable` equality method changed from `isEqual:` to `isEqualToDiffableObject:` [(ab890fc)](https://github.com/Instagram/IGListKit/commit/ab890fc6070f170a2db5a383a6296e62dcf75678) -- The default `NSObject` category was removed and replaced with `NSString` and `NSNumber` categories. All other models will need to conform to `IGListDiffable`. +- The default `NSObject` category was removed and replaced with `NSString` and `NSNumber` categories. All other models will need to conform to `IGListDiffable`. [(3947600)](https://github.com/Instagram/IGListKit/commit/394760081c7c2daa5ae6c18e00cdeaf2b67e22c1) - Added support for specifying an end position when scrolling. [Bofei Zhu](https://github.com/zhubofei) [(#196)](https://github.com/Instagram/IGListKit/pull/196). The `IGListAdapter` scrolling method changed: @@ -51,7 +51,7 @@ You can find a [migration guide here](https://instagram.github.io/IGListKit/migr - Added support for cells created from nibs. [Sven Bacia](https://github.com/svenbacia) [(#56)](https://github.com/Instagram/IGListKit/pull/56) -- Added an additional initializer for `IGListSingleSectionController` to be able to support single sections created from nibs. An example can be found [here](Examples/Examples-iOS/IGListKitExamples/ViewControllers/SingleSectionViewController.swift). +- Added an additional initializer for `IGListSingleSectionController` to be able to support single sections created from nibs. An example can be found [here](Examples/Examples-iOS/IGListKitExamples/ViewControllers/SingleSectionViewController.swift). [(#56)](https://github.com/Instagram/IGListKit/pull/56) ```objc - (instancetype)initWithNibName:(NSString *)nibName @@ -60,7 +60,7 @@ You can find a [migration guide here](https://instagram.github.io/IGListKit/migr sizeBlock:(IGListSingleSectionCellSizeBlock)sizeBlock; ``` -- Added `-isFirstSection` and `-isLastSection` APIs to `IGListSectionController` +- Added `-isFirstSection` and `-isLastSection` APIs to `IGListSectionController` [(316fbe2)](https://github.com/Instagram/IGListKit/commit/316fbe2b8b2508b58a0f38387c3a343b9c37e282) - Added support for cells and supplementaryViews created from storyboard. There's a new required method on the `IGListCollectionContext` protocol to do this. [Bofei Zhu](https://github.com/zhubofei) [(#92)](https://github.com/Instagram/IGListKit/pull/92)