Skip to content

Commit fb56c30

Browse files
author
Brandon Sneed
committed
Prepare for release 4.1.3.
1 parent 018ebe4 commit fb56c30

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

Analytics.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 = "Analytics"
33
s.module_name = "Segment"
4-
s.version = "4.1.2"
4+
s.version = "4.1.3"
55
s.summary = "The hassle-free way to add analytics to your iOS app."
66

77
s.description = <<-DESC

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Change Log
22
==========
3+
Version 4.1.3 *(27 January, 2021)*
4+
-----------------------------
5+
* [Fix](https://github.com/segmentio/analytics-ios/pull/982) Pull IDFA if it has changed and rebuild context if necessary.
6+
* [Fix](https://github.com/segmentio/analytics-ios/pull/973) Support Data Residency.
7+
* [Fix](https://github.com/segmentio/analytics-ios/pull/968) Added static lib support for Cocoapods.
8+
39
Version 4.1.2 *(12 November, 2020)*
410
-----------------------------
511
* [Fix](https://github.com/segmentio/analytics-ios/pull/966) Standarized all SDK versions between dependency managers. Migrated to importing modules vs headers. Removed all linked frameworks.

Examples/CarthageExample/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "segmentio/analytics-ios" "4.1.2"
1+
github "segmentio/analytics-ios" "4.1.3"
22
# Use a local project when debugging
33
# git "~/Code/segmentio/analytics-ios/" "master"

Segment/Classes/SEGAnalytics.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ @interface SEGAnalytics ()
2727
@property (nonatomic, strong) SEGStoreKitTracker *storeKitTracker;
2828
@property (nonatomic, strong) SEGIntegrationsManager *integrationsManager;
2929
@property (nonatomic, strong) SEGMiddlewareRunner *runner;
30-
@property (nonatomic, strong) NSString *lastIDFA;
30+
@property (nonatomic, copy) NSString *lastIDFA;
3131
@end
3232

3333

@@ -547,7 +547,7 @@ + (NSString *)version
547547
{
548548
// this has to match the actual version, NOT what's in info.plist
549549
// because Apple only accepts X.X.X as versions in the review process.
550-
return @"4.1.2";
550+
return @"4.1.3";
551551
}
552552

553553
#pragma mark - Helpers

Segment/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>4.1.2</string>
18+
<string>4.1.3</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)