Skip to content

Commit

Permalink
Merge pull request #997 from cdhoffmann/fixPodspecs
Browse files Browse the repository at this point in the history
Add upper limit to podspec dependencies
  • Loading branch information
cdhoffmann authored Feb 8, 2024
2 parents d91de55 + 76ca86f commit 0b34c60
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AEPCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Pod::Spec.new do |s|

s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }

s.dependency 'AEPRulesEngine', '>= 4.0.0'
s.dependency 'AEPServices', '>= 4.2.2'
s.dependency 'AEPRulesEngine', '>= 4.0.0', '< 5.0.0'
s.dependency 'AEPServices', '>= 4.2.2', '< 5.0.0'


s.source_files = 'AEPCore/Sources/**/*.swift'
Expand Down
2 changes: 1 addition & 1 deletion AEPIdentity.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Pod::Spec.new do |s|
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }

s.dependency 'AEPCore', '>= 4.2.2'
s.dependency 'AEPCore', '>= 4.2.2', '< 5.0.0'

end
2 changes: 1 addition & 1 deletion AEPLifecycle.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Pod::Spec.new do |s|
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }

s.dependency 'AEPCore', '>= 4.2.2'
s.dependency 'AEPCore', '>= 4.2.2', '< 5.0.0'

end
2 changes: 1 addition & 1 deletion AEPSignal.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Pod::Spec.new do |s|
s.swift_version = '5.1'
s.pod_target_xcconfig = { 'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES' }

s.dependency 'AEPCore', '>= 4.2.2'
s.dependency 'AEPCore', '>= 4.2.2', '< 5.0.0'

end

0 comments on commit 0b34c60

Please sign in to comment.