From f517df074d949ad2bc47368cda4324f311b8d6c7 Mon Sep 17 00:00:00 2001 From: Jeehoon Son Date: Mon, 16 Aug 2021 16:10:48 +0900 Subject: [PATCH 1/2] deinit bugfix --- .../BottomPopupController/BottomPopupTransitionHandler.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/BottomPopup/BottomPopupController/BottomPopupTransitionHandler.swift b/BottomPopup/BottomPopupController/BottomPopupTransitionHandler.swift index cdd9060..023405c 100644 --- a/BottomPopup/BottomPopupController/BottomPopupTransitionHandler.swift +++ b/BottomPopup/BottomPopupController/BottomPopupTransitionHandler.swift @@ -44,6 +44,7 @@ final class BottomPopupTransitionHandler: NSObject, UIViewControllerTransitionin } func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? { + bottomPopupPresentationController = nil return dismissAnimator } From 47721adbeaf1bec295f2076a8f95bf8f3c4eeb5c Mon Sep 17 00:00:00 2001 From: Jeehoon Son Date: Mon, 16 Aug 2021 16:11:33 +0900 Subject: [PATCH 2/2] Update podspec version to 0.7.1 --- BottomPopup.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BottomPopup.podspec b/BottomPopup.podspec index 8ba789c..88efb4e 100644 --- a/BottomPopup.podspec +++ b/BottomPopup.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "BottomPopup" - s.version = "0.7.0" + s.version = "0.7.1" s.summary = "BottomPopup provides a popup-like presentation style to any view controller" s.homepage = "https://github.com/ergunemr/BottomPopup"