Skip to content

Commit 2d72c65

Browse files
committed
Release 1.11.10
1 parent ba021bf commit 2d72c65

File tree

7 files changed

+2011
-4
lines changed

7 files changed

+2011
-4
lines changed

Analytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ end
66

77
Pod::Spec.new do |s|
88
s.name = "Analytics"
9-
s.version = "1.11.9"
9+
s.version = "1.11.10"
1010
s.summary = "Segment analytics and marketing tools library for iOS."
1111
s.homepage = "https://segment.com/libraries/ios"
1212
s.license = { :type => "MIT", :file => "License.md" }

Analytics.podspec-r

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
begin
2+
require File.expand_path('./scripts/build.rb')
3+
rescue LoadError
4+
require File.expand_path('~/dev/segmentio/analytics-ios/scripts/build.rb')
5+
end
6+
7+
Pod::Spec.new do |s|
8+
s.name = "Analytics"
9+
s.version = "1.11.9"
10+
s.summary = "Segment analytics and marketing tools library for iOS."
11+
s.homepage = "https://segment.com/libraries/ios"
12+
s.license = { :type => "MIT", :file => "License.md" }
13+
s.author = { "Segment" => "[email protected]" }
14+
15+
s.source = { :git => "https://github.com/segmentio/analytics-ios.git", :tag => s.version.to_s }
16+
s.ios.deployment_target = '6.0'
17+
s.requires_arc = true
18+
19+
s.subspec 'Core-iOS' do |ss|
20+
ss.public_header_files = ['Analytics/*.h', 'Analytics/Helpers/*.h', 'Analytics/Integrations/SEGAnalyticsIntegrations.h']
21+
ss.source_files = ['Analytics/*.{h,m}', 'Analytics/Helpers/*.{h,m}', 'Analytics/Integrations/SEGAnalyticsIntegrations.h']
22+
ss.platform = :ios, '6.0'
23+
ss.weak_frameworks = ['CoreBluetooth', 'SystemConfiguration', 'CoreLocation']
24+
ss.dependency 'TRVSDictionaryWithCaseInsensitivity', '0.0.2'
25+
s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => "ANALYTICS_VERSION=#{s.version}" }
26+
end
27+
28+
Build.subspecs.each do |a|
29+
s.subspec a.name do |ss|
30+
ss.prefix_header_contents = "#define USE_ANALYTICS_#{a.name.upcase} 1"
31+
ss.public_header_files = ['Analytics/Integrations/*.h', "Analytics/Integrations/#{a.name}/SEG#{a.name}Integration.h"]
32+
ss.ios.source_files = "Analytics/Integrations/#{a.name}/SEG#{a.name}Integration.{h,m}"
33+
ss.platform = :ios, '6.0'
34+
35+
ss.dependency 'Analytics/Core-iOS'
36+
ss.dependency 'Analytics/Segmentio' unless a.is_segment?
37+
38+
(a.dependencies || []).each do |d|
39+
if d.version
40+
ss.dependency d.name, d.version
41+
else
42+
ss.dependency d.name
43+
end
44+
end
45+
end
46+
end
47+
end

Analytics.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1785,7 +1785,7 @@
17851785
isa = XCBuildConfiguration;
17861786
buildSettings = {
17871787
ALWAYS_SEARCH_USER_PATHS = NO;
1788-
ANALYTICS_VERSION = 1.11.9;
1788+
ANALYTICS_VERSION = 1.11.10;
17891789
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
17901790
CLANG_CXX_LIBRARY = "libc++";
17911791
CLANG_ENABLE_OBJC_ARC = YES;
@@ -1817,7 +1817,7 @@
18171817
isa = XCBuildConfiguration;
18181818
buildSettings = {
18191819
ALWAYS_SEARCH_USER_PATHS = NO;
1820-
ANALYTICS_VERSION = 1.11.9;
1820+
ANALYTICS_VERSION = 1.11.10;
18211821
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
18221822
CLANG_CXX_LIBRARY = "libc++";
18231823
CLANG_ENABLE_OBJC_ARC = YES;

Analytics.xcodeproj/project.pbxproj-r

Lines changed: 1943 additions & 0 deletions
Large diffs are not rendered by default.

Analytics/Analytics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Analytics.h
22
// Copyright (c) 2014 Segment.io. All rights reserved.
3-
// Version 1.11.9 (Do not change this line. It is automatically modified by the build process)
3+
// Version 1.11.10 (Do not change this line. It is automatically modified by the build process)
44

55
#import "SEGAnalytics.h"

Analytics/Analytics.h-r

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Analytics.h
2+
// Copyright (c) 2014 Segment.io. All rights reserved.
3+
// Version 1.11.9 (Do not change this line. It is automatically modified by the build process)
4+
5+
#import "SEGAnalytics.h"

History.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
1.11.10 / 2015-05-27
3+
====================
4+
5+
* Localytics: Dismiss In App Messages
6+
* Send custom dimensions to Localytics
7+
* Kahuna: Move push registration to start method
8+
* Fix: Added more checks for concurrency
9+
* Updated Taplytics. Added group functionality
10+
* Enable Monitoring web views for Crittercism
11+
* Update Crittercism Integration
12+
* Update Optimizely SDK
13+
214
1.11.9 / 2015-05-18
315
===================
416

0 commit comments

Comments
 (0)