Skip to content

Commit 97c5625

Browse files
chore: prepare for 3.10.3
## [3.10.3](3.10.2...3.10.3) (2025-05-30) ### Bug Fixes * premature deallocation of the rich push http client ([1edb75c](1edb75c)) * premature deallocation of the rich push http client ([#924](#924)) ([9a985c1](9a985c1))
1 parent 9a985c1 commit 97c5625

12 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [3.10.3](https://github.com/customerio/customerio-ios/compare/3.10.2...3.10.3) (2025-05-30)
2+
3+
### Bug Fixes
4+
5+
* premature deallocation of the rich push http client ([1edb75c](https://github.com/customerio/customerio-ios/commit/1edb75c141fbc20e42266f2a27c0ea0ff5fdb7e9))
6+
* premature deallocation of the rich push http client ([#924](https://github.com/customerio/customerio-ios/issues/924)) ([9a985c1](https://github.com/customerio/customerio-ios/commit/9a985c1830990a8a2e68a44da5f7dbf4b7f47f62))
7+
18
## [3.10.2](https://github.com/customerio/customerio-ios/compare/3.10.1...3.10.2) (2025-05-27)
29

310
### Bug Fixes

CustomerIO.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Pod::Spec.new do |spec|
77
spec.name = "CustomerIO"
8-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
8+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
99
spec.summary = "Official Customer.io SDK for iOS."
1010
spec.homepage = "https://github.com/customerio/customerio-ios"
1111
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOCommon.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOCommon"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIODataPipelines.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIODataPipelines"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOMessagingInApp.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOMessagingInApp"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOMessagingPush.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOMessagingPush"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOMessagingPushAPN.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOMessagingPushAPN"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOMessagingPushFCM.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOMessagingPushFCM"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

CustomerIOTrackingMigration.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "CustomerIOTrackingMigration"
3-
spec.version = "3.10.2" # Don't modify this line - it's automatically updated
3+
spec.version = "3.10.3" # Don't modify this line - it's automatically updated
44
spec.summary = "Official Customer.io SDK for iOS."
55
spec.homepage = "https://github.com/customerio/customerio-ios"
66
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'

Sources/Common/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ import Foundation
66
Keep this file as small as possible to make the automated updating script stable and easy to use.
77
*/
88
public enum SdkVersion {
9-
public static let version: String = "3.10.2"
9+
public static let version: String = "3.10.3"
1010
}

reports/sdk-binary-size-including-dependencies.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
0.9% 7.79Ki 0.9% 7.79Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Util/Log.swift
3030
0.9% 7.68Ki 0.9% 7.68Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Views/UIKitInline.swift
3131
0.8% 7.39Ki 0.8% 7.39Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Migration/DataPipelineMigrationAssistant.swift
32-
0.8% 7.36Ki 0.8% 7.36Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/RichPush/RichPushHttpClient.swift
3332
0.8% 7.32Ki 0.8% 7.32Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Background Queue/Type/QueueTaskMetadata.swift
3433
0.8% 7.31Ki 0.8% 7.31Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/UserNotificationsFramework/Wrappers.swift
34+
0.8% 7.05Ki 0.8% 7.05Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/RichPush/RichPushHttpClient.swift
3535
0.8% 6.80Ki 0.8% 6.80Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Gist/Managers/ModalViewManager.swift
3636
0.8% 6.73Ki 0.8% 6.73Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Views/GistInlineInAppMessageView.swift
3737
0.7% 6.60Ki 0.7% 6.60Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/DataPipeline/Plugins/AutoTrackingScreenViews.swift
@@ -176,6 +176,6 @@
176176
0.0% 32 0.0% 32 /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/State/InAppMessageStore.swift
177177
0.0% 28 0.0% 28 /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Version.swift
178178
0.0% 8 0.0% 8 /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Extensions/ErrorExtension.swift
179-
100.0% 883Ki 100.0% 883Ki TOTAL
179+
100.0% 882Ki 100.0% 882Ki TOTAL
180180
Filtering enabled (source_filter); omitted file = 1.91Mi, vm = 1.98Mi of entries
181181

reports/sdk-binary-size.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
0.9% 7.79Ki 0.9% 7.79Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Util/Log.swift
3030
0.9% 7.68Ki 0.9% 7.68Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Views/UIKitInline.swift
3131
0.8% 7.39Ki 0.8% 7.39Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Migration/DataPipelineMigrationAssistant.swift
32-
0.8% 7.36Ki 0.8% 7.36Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/RichPush/RichPushHttpClient.swift
3332
0.8% 7.32Ki 0.8% 7.32Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Background Queue/Type/QueueTaskMetadata.swift
3433
0.8% 7.31Ki 0.8% 7.31Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/UserNotificationsFramework/Wrappers.swift
34+
0.8% 7.05Ki 0.8% 7.05Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingPush/RichPush/RichPushHttpClient.swift
3535
0.8% 6.80Ki 0.8% 6.80Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Gist/Managers/ModalViewManager.swift
3636
0.8% 6.73Ki 0.8% 6.73Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/Views/GistInlineInAppMessageView.swift
3737
0.7% 6.60Ki 0.7% 6.60Ki /Users/runner/work/customerio-ios/customerio-ios/Sources/DataPipeline/Plugins/AutoTrackingScreenViews.swift
@@ -176,6 +176,6 @@
176176
0.0% 32 0.0% 32 /Users/runner/work/customerio-ios/customerio-ios/Sources/MessagingInApp/State/InAppMessageStore.swift
177177
0.0% 28 0.0% 28 /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Version.swift
178178
0.0% 8 0.0% 8 /Users/runner/work/customerio-ios/customerio-ios/Sources/Common/Extensions/ErrorExtension.swift
179-
100.0% 883Ki 100.0% 883Ki TOTAL
179+
100.0% 882Ki 100.0% 882Ki TOTAL
180180
Filtering enabled (source_filter); omitted file = 1.91Mi, vm = 1.98Mi of entries
181181

0 commit comments

Comments
 (0)