From e05ec88d65a35abc773f7b965de267f8f17ae604 Mon Sep 17 00:00:00 2001 From: Rafael Setragni Date: Mon, 14 Oct 2024 15:46:13 -0300 Subject: [PATCH] Update the minimum deployment target for iOS to iOS 12 and increase the plugin version to 0.10.0 Modified the iOS deployment target setting in the project configuration to iOS 12. This change aligns with newer iOS features and improvements, ensuring better app performance and security. Updated the plugin version to 0.10.0 to mark a new milestone release with significant changes, including the increased iOS deployment target and other enhancements included in this version. --- Example/Podfile | 4 ++-- IosAwnCore.podspec | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Example/Podfile b/Example/Podfile index 30be293..ffb2e9f 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,6 +1,6 @@ use_frameworks! -platform :ios, '11.0' +platform :ios, '12.0' target 'IosAwnCore_Example' do pod 'IosAwnCore', :path => '../' @@ -18,7 +18,7 @@ post_install do |installer| if target.name == 'IosAwnCore' config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' end - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' end end end diff --git a/IosAwnCore.podspec b/IosAwnCore.podspec index 25fc50e..ead023e 100644 --- a/IosAwnCore.podspec +++ b/IosAwnCore.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'IosAwnCore' - s.version = '0.9.3' + s.version = '0.10.0' s.summary = 'Awesome Notifications iOS Core' s.description = <<-DESC @@ -24,7 +24,7 @@ Awesome Notifications Ios Core (Only iOS devices). s.static_framework = true s.platform = :ios - s.ios.deployment_target = '11.0' + s.ios.deployment_target = '12.0' s.swift_version = '5.3' s.source_files = 'IosAwnCore/Classes/**/*'