diff --git a/DraggableOverlayExample.xcodeproj/project.pbxproj b/DraggableOverlayExample.xcodeproj/project.pbxproj index 00a0b6b..493dca9 100644 --- a/DraggableOverlayExample.xcodeproj/project.pbxproj +++ b/DraggableOverlayExample.xcodeproj/project.pbxproj @@ -357,6 +357,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -385,6 +386,7 @@ INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/DraggableOverlayFramework.xcodeproj/project.pbxproj b/DraggableOverlayFramework.xcodeproj/project.pbxproj index 7598167..0af9eab 100644 --- a/DraggableOverlayFramework.xcodeproj/project.pbxproj +++ b/DraggableOverlayFramework.xcodeproj/project.pbxproj @@ -298,6 +298,7 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_NSHumanReadableCopyright = ""; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -326,6 +327,7 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_NSHumanReadableCopyright = ""; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/Podfile b/Podfile index 3dfeae5..02a0036 100644 --- a/Podfile +++ b/Podfile @@ -1,6 +1,6 @@ source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '10.0' +platform :ios, '11.0' use_frameworks! @@ -8,11 +8,11 @@ workspace 'DraggableOverlayWorkspace' target 'DraggableOverlayFramework' do project 'DraggableOverlayFramework.xcodeproj' - pod 'Shakuro.CommonTypes', '1.1.1' + pod 'Shakuro.CommonTypes', '1.1.4' end target 'DraggableOverlayExample' do project 'DraggableOverlayExample.xcodeproj' pod 'SwiftLint', '0.43.1' - pod 'Shakuro.CommonTypes', '1.1.1' + pod 'Shakuro.CommonTypes', '1.1.4' end \ No newline at end of file diff --git a/Podfile.lock b/Podfile.lock index 3bd6b2f..486a487 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,9 +1,9 @@ PODS: - - Shakuro.CommonTypes (1.1.1) + - Shakuro.CommonTypes (1.1.4) - SwiftLint (0.43.1) DEPENDENCIES: - - Shakuro.CommonTypes (= 1.1.1) + - Shakuro.CommonTypes (= 1.1.4) - SwiftLint (= 0.43.1) SPEC REPOS: @@ -12,9 +12,9 @@ SPEC REPOS: - SwiftLint SPEC CHECKSUMS: - Shakuro.CommonTypes: 8b15b334da1dfba894237940f890f7519d33ba3e + Shakuro.CommonTypes: a3c3d432a2fc19e3e7971dad13aa9066d7ce5771 SwiftLint: 99f82d07b837b942dd563c668de129a03fc3fb52 -PODFILE CHECKSUM: 334b89c97677336bcbcbf1c0f739d1d268ffb9ff +PODFILE CHECKSUM: ff3b896d2ce42f432ca5ec70cfbe633f96f24a25 COCOAPODS: 1.11.3 diff --git a/Shakuro.DraggableOverlay.podspec b/Shakuro.DraggableOverlay.podspec index 6914273..9d53a4d 100644 --- a/Shakuro.DraggableOverlay.podspec +++ b/Shakuro.DraggableOverlay.podspec @@ -1,15 +1,15 @@ Pod::Spec.new do |s| s.name = 'Shakuro.DraggableOverlay' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'Shakuro Draggable Overlay' s.homepage = 'https://github.com/shakurocom/DraggableOverlay' s.license = { :type => "MIT", :file => "LICENSE.md" } s.authors = {'apopov1988' => 'apopov@shakuro.com', 'wwwpix' => 'spopov@shakuro.com', 'slaschuk' => 'slaschuk@shakuro.com'} s.source = { :git => 'https://github.com/shakurocom/DraggableOverlay.git', :tag => s.version } s.source_files = 'Source/*', 'Source/**/*' - s.swift_version = ['5.1', '5.2', '5.3', '5.4', '5.5'] + s.swift_version = ['5.1', '5.2', '5.3', '5.4', '5.5', '5.6'] s.ios.deployment_target = '11.0' - s.dependency 'Shakuro.CommonTypes', '1.1.2' + s.dependency 'Shakuro.CommonTypes', '1.1.4' end