Skip to content

Commit 6a56e49

Browse files
authored
fix: add "v" prefix to git tag in all kit podspecs (#739)
Kit podspecs used `:tag => s.version.to_s` which resolves to "9.0.0", but the actual git tag is "v9.0.0". This caused `pod trunk push` to fail with "Remote branch 9.0.0 not found in upstream origin" during CocoaPods validation. Aligns all 27 kit podspecs with the core SDK podspecs which already use `:tag => "v" + s.version.to_s`.
1 parent 0bed61c commit 6a56e49

27 files changed

Lines changed: 27 additions & 27 deletions

File tree

Kits/adjust/adjust-5/mParticle-Adjust-5.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.ios.deployment_target = "15.6"
1414
s.tvos.deployment_target = "15.6"
1515
s.source_files = 'Sources/mParticle-Adjust/**/*.{h,m}'

Kits/adobe/adobe-5/mParticle-Adobe-5.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.static_framework = true
1414
s.swift_version = '5.0'
1515
s.ios.deployment_target = "15.6"

Kits/appsflyer/appsflyer-6/mParticle-AppsFlyer-6.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.static_framework = true
1414
s.ios.deployment_target = "15.6"
1515
s.ios.source_files = 'Sources/mParticle-AppsFlyer/**/*.{h,m}'

Kits/apptentive/apptentive-6/mParticle-Apptentive-6.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.ios.deployment_target = "15.6"
1414
s.ios.source_files = 'Sources/mParticle-Apptentive/**/*.{h,m}'
1515
s.ios.resource_bundles = { 'mParticle-Apptentive-6-Privacy' => ['Sources/mParticle-Apptentive/PrivacyInfo.xcprivacy'] }

Kits/apptimize/apptimize-3/mParticle-Apptimize-3.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.ios.deployment_target = "15.6"
1414
s.ios.source_files = 'Sources/mParticle-Apptimize/**/*.{h,m}'
1515
s.ios.resource_bundles = { 'mParticle-Apptimize-3-Privacy' => ['Sources/mParticle-Apptimize/PrivacyInfo.xcprivacy'] }

Kits/branchmetrics/branchmetrics-3/mParticle-BranchMetrics-3.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.ios.deployment_target = "15.6"
1414
s.ios.source_files = 'Sources/mParticle-BranchMetrics/**/*.{h,m}'
1515
s.ios.resource_bundles = { 'mParticle-BranchMetrics-3-Privacy' => ['Sources/mParticle-BranchMetrics/PrivacyInfo.xcprivacy'] }

Kits/braze/braze-12/mParticle-Braze-12.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.static_framework = true
1414
s.swift_version = "5.5"
1515
s.ios.deployment_target = "15.6"

Kits/braze/braze-13/mParticle-Braze-13.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.static_framework = true
1414
s.swift_version = "5.5"
1515
s.ios.deployment_target = "15.6"

Kits/braze/braze-14/mParticle-Braze-14.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.static_framework = true
1414
s.swift_version = "5.5"
1515
s.ios.deployment_target = "15.6"

Kits/clevertap/clevertap-7/mParticle-CleverTap-7.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.homepage = "https://www.mparticle.com"
1010
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
1111
s.author = { "mParticle" => "support@mparticle.com" }
12-
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => s.version.to_s }
12+
s.source = { :git => "https://github.com/mparticle/mparticle-apple-sdk.git", :tag => "v" + s.version.to_s }
1313
s.ios.deployment_target = "15.6"
1414
s.ios.source_files = 'Sources/mParticle-CleverTap/**/*.{h,m}'
1515
s.ios.resource_bundles = { 'mParticle-CleverTap-7-Privacy' => ['Sources/mParticle-CleverTap/PrivacyInfo.xcprivacy'] }

0 commit comments

Comments
 (0)