From b73ad9b15b26f149235bd2e397968da44fbe6495 Mon Sep 17 00:00:00 2001 From: atecle Date: Mon, 25 Nov 2019 14:09:34 -0500 Subject: [PATCH 1/5] bugfix: only call beginAppearanceTransition on VC if it is a childVC --- NYTPhotoViewer/NYTPhotoTransitionAnimator.m | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/NYTPhotoViewer/NYTPhotoTransitionAnimator.m b/NYTPhotoViewer/NYTPhotoTransitionAnimator.m index 87f2675d..8a07f5c0 100644 --- a/NYTPhotoViewer/NYTPhotoTransitionAnimator.m +++ b/NYTPhotoViewer/NYTPhotoTransitionAnimator.m @@ -52,9 +52,15 @@ - (void)setupTransitionContainerHierarchyWithTransitionContext:(id Date: Mon, 25 Nov 2019 14:23:28 -0500 Subject: [PATCH 2/5] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae2c2fdc..d87bcada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Changes for users of the library currently on `develop`: - Fixed some tests, added tests for NYTPhotoViewerSinglePhotoDataSource - Fixed a strict warning and a subscripting bug in NYTPhotoViewerArrayDataSource.m - Added support for interstitial views +- Fix issue with beginAppearanceTransition being called on non-child VCs ## [2.0.0](https://github.com/NYTimes/NYTPhotoViewer/releases/tag/2.0.0) From cf18bd0500737ff106dc6d8615a9b5d6c40a9b05 Mon Sep 17 00:00:00 2001 From: atecle Date: Thu, 5 Dec 2019 09:28:11 -0500 Subject: [PATCH 3/5] bump version from 3.0.0 to 3.0.1 --- NYTPhotoViewer.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NYTPhotoViewer.podspec b/NYTPhotoViewer.podspec index 9a8f962c..a21f4508 100644 --- a/NYTPhotoViewer.podspec +++ b/NYTPhotoViewer.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "NYTPhotoViewer" - s.version = "3.0.0" + s.version = "3.0.1" s.description = <<-DESC NYTPhotoViewer is a slideshow and image viewer that includes double tap to zoom, captions, support for multiple images, interactive flick to dismiss, animated zooming presentation, and more. From 2b29d47094e3555dae790d12b8dd70318a05baea Mon Sep 17 00:00:00 2001 From: atecle Date: Thu, 5 Dec 2019 09:35:06 -0500 Subject: [PATCH 4/5] update changelog for 3.0.0 and 3.0.1 --- CHANGELOG.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d87bcada..a8c1e856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,20 @@ Changes for users of the library currently on `develop`: -- Fixed some tests, added tests for NYTPhotoViewerSinglePhotoDataSource +## [3.0.1](https://github.com/nytimes/NYTPhotoViewer/releases/tag/3.0.1) + +Changes for users of the library in 3.0.1: + - Fixed a strict warning and a subscripting bug in NYTPhotoViewerArrayDataSource.m -- Added support for interstitial views -- Fix issue with beginAppearanceTransition being called on non-child VCs +- Fixed issue with beginAppearanceTransition being called on VCs with no parent VC + +## [3.0.0](https://github.com/nytimes/NYTPhotoViewer/releases/tag/3.0.0) + +Changes for users of the library in 3.0.0: + +- Unit test improvements +- Interstitial view support + Swift sample +- NSObject conformance for example app ## [2.0.0](https://github.com/NYTimes/NYTPhotoViewer/releases/tag/2.0.0) From 9920e27f40aa7819732c195fe6ef39edc98cbb6f Mon Sep 17 00:00:00 2001 From: atecle Date: Thu, 5 Dec 2019 11:53:04 -0500 Subject: [PATCH 5/5] correct the changelog for 3.0.1 --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c1e856..5983f7ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,6 @@ Changes for users of the library currently on `develop`: Changes for users of the library in 3.0.1: -- Fixed a strict warning and a subscripting bug in NYTPhotoViewerArrayDataSource.m - Fixed issue with beginAppearanceTransition being called on VCs with no parent VC ## [3.0.0](https://github.com/nytimes/NYTPhotoViewer/releases/tag/3.0.0)