Skip to content

Commit

Permalink
feat(ios): update GoogleMLKit dependencies to 5.0.0 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Apr 25, 2024
1 parent 6cdb738 commit 79011e7
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .changeset/afraid-otters-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@capacitor-mlkit/barcode-scanning': minor
'@capacitor-mlkit/face-detection': minor
'@capacitor-mlkit/selfie-segmentation': minor
'@capacitor-mlkit/translation': minor
---

feat(ios): update `GoogleMLKit` dependencies to `5.0.0`
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'GoogleMLKit/BarcodeScanning', '4.0.0'
s.dependency 'GoogleMLKit/BarcodeScanning', '5.0.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/barcode-scanning/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'GoogleMLKit/BarcodeScanning', '4.0.0'
pod 'GoogleMLKit/BarcodeScanning', '5.0.0'
end

target 'PluginTests' do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'GoogleMLKit/FaceDetection', '4.0.0'
s.dependency 'GoogleMLKit/FaceDetection', '5.0.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/face-detection/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'GoogleMLKit/FaceDetection', '4.0.0'
pod 'GoogleMLKit/FaceDetection', '5.0.0'
end

target 'PluginTests' do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'GoogleMLKit/SegmentationSelfie', '4.0.0'
s.dependency 'GoogleMLKit/SegmentationSelfie', '5.0.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/selfie-segmentation/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'GoogleMLKit/SegmentationSelfie', '4.0.0'
pod 'GoogleMLKit/SegmentationSelfie', '5.0.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/translation/CapacitorMlkitTranslation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'GoogleMLKit/Translate', '4.0.0'
s.dependency 'GoogleMLKit/Translate', '5.0.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/translation/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'GoogleMLKit/Translate', '4.0.0'
pod 'GoogleMLKit/Translate', '5.0.0'
end

target 'PluginTests' do
Expand Down

0 comments on commit 79011e7

Please sign in to comment.