Skip to content

Commit

Permalink
Prepare for release 4.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Sneed committed Jan 27, 2021
1 parent 018ebe4 commit fb56c30
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Analytics.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Analytics"
s.module_name = "Segment"
s.version = "4.1.2"
s.version = "4.1.3"
s.summary = "The hassle-free way to add analytics to your iOS app."

s.description = <<-DESC
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Change Log
==========
Version 4.1.3 *(27 January, 2021)*
-----------------------------
* [Fix](https://github.com/segmentio/analytics-ios/pull/982) Pull IDFA if it has changed and rebuild context if necessary.
* [Fix](https://github.com/segmentio/analytics-ios/pull/973) Support Data Residency.
* [Fix](https://github.com/segmentio/analytics-ios/pull/968) Added static lib support for Cocoapods.

Version 4.1.2 *(12 November, 2020)*
-----------------------------
* [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.
Expand Down
2 changes: 1 addition & 1 deletion Examples/CarthageExample/Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "segmentio/analytics-ios" "4.1.2"
github "segmentio/analytics-ios" "4.1.3"
# Use a local project when debugging
# git "~/Code/segmentio/analytics-ios/" "master"
4 changes: 2 additions & 2 deletions Segment/Classes/SEGAnalytics.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ @interface SEGAnalytics ()
@property (nonatomic, strong) SEGStoreKitTracker *storeKitTracker;
@property (nonatomic, strong) SEGIntegrationsManager *integrationsManager;
@property (nonatomic, strong) SEGMiddlewareRunner *runner;
@property (nonatomic, strong) NSString *lastIDFA;
@property (nonatomic, copy) NSString *lastIDFA;
@end


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

#pragma mark - Helpers
Expand Down
2 changes: 1 addition & 1 deletion Segment/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.1.2</string>
<string>4.1.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit fb56c30

Please sign in to comment.