Skip to content

Commit e7850d4

Browse files
author
Brandon Sneed
committed
Prepare for release 3.7.1
1 parent 0ed64b8 commit e7850d4

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

Analytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Analytics"
3-
s.version = "3.7.0"
3+
s.version = "3.7.1"
44
s.summary = "The hassle-free way to add analytics to your iOS app."
55

66
s.description = <<-DESC

Analytics.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,7 @@
755755
INFOPLIST_FILE = Analytics/Info.plist;
756756
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
757757
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
758+
MARKETING_VERSION = 3.7.1;
758759
PRODUCT_BUNDLE_IDENTIFIER = com.segment.Analytics;
759760
PRODUCT_NAME = "$(TARGET_NAME)";
760761
SDKROOT = iphoneos;
@@ -778,6 +779,7 @@
778779
INFOPLIST_FILE = Analytics/Info.plist;
779780
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
780781
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
782+
MARKETING_VERSION = 3.7.1;
781783
PRODUCT_BUNDLE_IDENTIFIER = com.segment.Analytics;
782784
PRODUCT_NAME = "$(TARGET_NAME)";
783785
SDKROOT = iphoneos;

Analytics/Classes/SEGAnalytics.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ + (NSString *)version
432432
{
433433
// this has to match the actual version, NOT what's in info.plist
434434
// because Apple only accepts X.X.X as versions in the review process.
435-
return @"3.7.0";
435+
return @"3.7.1";
436436
}
437437

438438
#pragma mark - Helpers

Analytics/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>3.7.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
==========
33

4+
Version 3.7.1 *(21st Feburary, 2020)*
5+
-------------------------------------
6+
The following fixes were backported from the 3.8.x betas
7+
8+
* [Fix](https://github.com/segmentio/analytics-ios/pull/866): Fallback to last settings loaded on iOS.
9+
* [Fix](https://github.com/segmentio/analytics-ios/pull/864): Differences observed in how iOS/android pass userId/anonId; Corrected.
10+
* [Fix](https://github.com/segmentio/analytics-ios/pull/785): Fix GCD mutual dependency
11+
412
Version 3.7.0 *(22nd July, 2019)*
513
---------------------------------
614

0 commit comments

Comments
 (0)