From 46f2b5b7df0c1ed828687d91cb4099ec10b0fb59 Mon Sep 17 00:00:00 2001 From: queue-it Date: Thu, 29 Feb 2024 14:19:45 +0000 Subject: [PATCH] Preparing release 3.4.0 --- .gitignore | 3 +++ QueueITLib/PrivacyInfo.xcprivacy | 35 ++++++++++++++++++++++++++++++++ QueueITLib/QueueConsts.h | 2 +- QueueITLibrary.podspec | 3 ++- 4 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 QueueITLib/PrivacyInfo.xcprivacy diff --git a/.gitignore b/.gitignore index 1f686b3..d5796ae 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,6 @@ QueueITLib.xcworkspace builds xcuserdata/ /.idea +build +QueueITLibSwift.xcframework.zip +.DS_Store \ No newline at end of file diff --git a/QueueITLib/PrivacyInfo.xcprivacy b/QueueITLib/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..5139ebc --- /dev/null +++ b/QueueITLib/PrivacyInfo.xcprivacy @@ -0,0 +1,35 @@ + + + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeOtherDataTypes + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeDeviceID + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + NSPrivacyTracking + + + diff --git a/QueueITLib/QueueConsts.h b/QueueITLib/QueueConsts.h index 616c521..9fa3529 100644 --- a/QueueITLib/QueueConsts.h +++ b/QueueITLib/QueueConsts.h @@ -3,6 +3,6 @@ #define QueueCloseUrl @"queueit://close" #define QueueRestartSessionUrl @"queueit://restartSession" -#define SDKVersion @"iOS-3.4.0"; +#define SDKVersion @"iOS-3.4.1"; #endif diff --git a/QueueITLibrary.podspec b/QueueITLibrary.podspec index 5df1ec0..00f9260 100644 --- a/QueueITLibrary.podspec +++ b/QueueITLibrary.podspec @@ -6,7 +6,8 @@ s.homepage = "https://github.com/queueit/ios-webui-sdk" s.license = 'MIT' s.authors = { 'Queue-It' => 'https://queue-it.com' } s.platform = :ios, '9.3' -s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.4.0' } +s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.4.1' } s.requires_arc = true s.source_files = "QueueITLib/*.{h,m}" +s.resource_bundles = {'QueueITLibrary' => ['QueueITLib/PrivacyInfo.xcprivacy']} end