Skip to content

Commit 125689b

Browse files
chore: Release v9.2.0 (#769)
* chore: (release) 9.2.0 Updates version to 9.2.0 across the mParticle ecosystem. --------- Co-authored-by: Brandon Stalnaker <brandon.stalnaker@rokt.com>
1 parent c48a9ea commit 125689b

42 files changed

Lines changed: 61 additions & 42 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release-draft.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ jobs:
9090
Kits/rokt/rokt/Sources/mParticle-Rokt/MPKitRokt.m
9191
sed -i '' 's/public static let version = "[^"]*"/public static let version = "'"${VERSION}"'"/' \
9292
Kits/rokt-sdk-plus/rokt-sdk-plus-ios/Sources/RoktSDKPlus/RoktSDKPlus.swift
93+
sed -i '' 's/^let version = "[^"]*"/let version = "'"${VERSION}"'"/' \
94+
Kits/rokt-sdk-plus/rokt-sdk-plus-ios/Package.swift
9395
sed -i '' "s/kLibVersion = @\"[^\"]*\"/kLibVersion = @\"${VERSION}\"/" \
9496
Kits/clevertap/clevertap-7/Sources/mParticle-CleverTap/MPKitCleverTap.m
9597
sed -i '' "s/registerPluginName:@\"mParticleKit\" version:@\"[^\"]*\"/registerPluginName:@\"mParticleKit\" version:@\"${VERSION}\"/" \
@@ -162,7 +164,7 @@ jobs:
162164
- Kit source version strings (Rokt \`kMPRoktKitVersion\`, RoktSDKPlus \`RoktSDKPlus.version\`, CleverTap \`kLibVersion\`, Branch \`registerPluginName\`)
163165
- \`Framework/Info.plist\`
164166
- Integration test mappings
165-
- Kit \`Package.swift\`: \`let version\` → core SDK SPM pin (major bumps only)
167+
- Kit \`Package.swift\`: \`let version\` for \`Kits/rokt-sdk-plus/rokt-sdk-plus-ios\` on every release; other kits’ \`let version\` only on **major** bumps (core SDK SPM pin)
166168
167169
---
168170

CHANGELOG.md

Lines changed: 18 additions & 1 deletion

Framework/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>9.1.0</string>
18+
<string>9.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-Adjust-5"
33
s.module_name = 'mParticle_Adjust'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "Adjust integration for mParticle"
66
s.description = <<-DESC
77
This is the Adjust integration for mParticle.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-Adobe-5"
33
s.module_name = 'mParticle_Adobe'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "Adobe integration for mParticle"
66
s.description = <<-DESC
77
This is the Adobe integration for mParticle.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-AppsFlyer-6"
33
s.module_name = 'mParticle_AppsFlyer'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "AppsFlyer integration for mParticle"
66
s.description = <<-DESC
77
This is the AppsFlyer integration for mParticle.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-Apptentive-6"
33
s.module_name = 'mParticle_Apptentive'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "Apptentive integration for mParticle"
66
s.description = <<-DESC
77
This is the Apptentive integration for mParticle.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-Apptimize-3"
33
s.module_name = 'mParticle_Apptimize'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "Apptimize integration for mParticle"
66
s.description = <<-DESC
77
This is the Apptimize integration for mParticle.

Kits/branchmetrics/branchmetrics-3/Sources/mParticle-BranchMetrics/MPKitBranchMetrics.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ - (void)start {
145145
NSString *branchKey = [self.configuration[ekBMAppKey] copy];
146146
self.branchInstance = [Branch getInstance:branchKey];
147147

148-
[self.branchInstance registerPluginName:@"mParticleKit" version:@"9.1.0"];
148+
[self.branchInstance registerPluginName:@"mParticleKit" version:@"9.2.0"];
149149

150150
#pragma clang diagnostic push
151151
#pragma clang diagnostic ignored "-Wundeclared-selector"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-BranchMetrics-3"
33
s.module_name = 'mParticle_BranchMetrics'
4-
s.version = "9.1.0"
4+
s.version = "9.2.0"
55
s.summary = "Branch Metrics integration for mParticle"
66
s.description = <<-DESC
77
This is the Branch Metrics integration for mParticle.

0 commit comments

Comments
 (0)