File tree Expand file tree Collapse file tree 5 files changed +13
-3
lines changed Expand file tree Collapse file tree 5 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Analytics"
3
- s . version = "3.7.0 "
3
+ s . version = "3.7.1 "
4
4
s . summary = "The hassle-free way to add analytics to your iOS app."
5
5
6
6
s . description = <<-DESC
Original file line number Diff line number Diff line change 755
755
INFOPLIST_FILE = Analytics/Info.plist;
756
756
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
757
757
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
758
+ MARKETING_VERSION = 3.7.1;
758
759
PRODUCT_BUNDLE_IDENTIFIER = com.segment.Analytics;
759
760
PRODUCT_NAME = "$(TARGET_NAME)";
760
761
SDKROOT = iphoneos;
778
779
INFOPLIST_FILE = Analytics/Info.plist;
779
780
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
780
781
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
782
+ MARKETING_VERSION = 3.7.1;
781
783
PRODUCT_BUNDLE_IDENTIFIER = com.segment.Analytics;
782
784
PRODUCT_NAME = "$(TARGET_NAME)";
783
785
SDKROOT = iphoneos;
Original file line number Diff line number Diff line change @@ -432,7 +432,7 @@ + (NSString *)version
432
432
{
433
433
// this has to match the actual version, NOT what's in info.plist
434
434
// because Apple only accepts X.X.X as versions in the review process.
435
- return @" 3.7.0 " ;
435
+ return @" 3.7.1 " ;
436
436
}
437
437
438
438
#pragma mark - Helpers
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >3.7.0 </string >
18
+ <string >$(MARKETING_VERSION) </string >
19
19
<key >CFBundleVersion </key >
20
20
<string >$(CURRENT_PROJECT_VERSION) </string >
21
21
<key >NSPrincipalClass </key >
Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
12
Version 3.7.0 * (22nd July, 2019)*
5
13
---------------------------------
6
14
You can’t perform that action at this time.
0 commit comments