From d38e636afdf47af917bb3dd6efdd2cc2c1c4bea5 Mon Sep 17 00:00:00 2001 From: Parsa Nasirimehr <40071952+TheRogue76@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:52:58 +0200 Subject: [PATCH 1/2] Update Foundation.swift --- Sources/Foundation.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Foundation.swift b/Sources/Foundation.swift index 10832c0..bfdfab9 100644 --- a/Sources/Foundation.swift +++ b/Sources/Foundation.swift @@ -21,7 +21,9 @@ // THE SOFTWARE. import Foundation +#if canImport(GRMustacheKeyAccess) import GRMustacheKeyAccess +#endif /// GRMustache provides built-in support for rendering `NSObject`. extension NSObject : MustacheBoxable { From 8426dbac4ae9a7871188751001fcb351a562586a Mon Sep 17 00:00:00 2001 From: Parsa Nasirimehr Date: Fri, 25 Oct 2024 11:27:41 +0200 Subject: [PATCH 2/2] fix: bump iOS to get pod lint to pass --- GRMustache.swift.podspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GRMustache.swift.podspec b/GRMustache.swift.podspec index 041889a..05b828b 100644 --- a/GRMustache.swift.podspec +++ b/GRMustache.swift.podspec @@ -8,9 +8,9 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/groue/GRMustache.swift.git', :tag => s.version } s.source_files = 'Sources/**/*.{h,m,swift}', 'ObjC/**/*.{h,m,swift}' s.module_name = 'Mustache' - s.swift_version = '5.0' - s.ios.deployment_target = '8.0' - s.osx.deployment_target = '10.10' + s.swift_version = '5.9' + s.ios.deployment_target = '11.0' + s.osx.deployment_target = '10.11' s.tvos.deployment_target = '9.0' s.requires_arc = true s.framework = 'Foundation'