Skip to content

Commit e1c54b2

Browse files
committed
Release 1.11.9
1 parent 287b331 commit e1c54b2

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
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.8"
9+
s.version = "1.11.9"
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.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@
15961596
);
15971597
runOnlyForDeploymentPostprocessing = 0;
15981598
shellPath = /bin/sh;
1599-
shellScript = "# Update the version in Analytics.h header\noldVersion=\"\\/\\/ Version .*\"\nnewVersion=\"\\/\\/ Version ${ANALYTICS_VERSION} (Do not change this line. It is automatically modified by the build process)\"\nsed -i '' -e \"s/${oldVersion}/${newVersion}/g\" Analytics/Analytics.h\n\n# Update the version in Analytics.podspec\noldVersion=\"s.version = .*\"\nnewVersion=\"s.version = \\\"${ANALYTICS_VERSION}\\\"\"\nsed -i '' -e \"s/${oldVersion}/${newVersion}/g\" Analytics.podspec\n";
1599+
shellScript = "# Update the version in Analytics.h header\noldVersion=\"\\/\\/ Version .*\"\nnewVersion=\"\\/\\/ Version ${ANALYTICS_VERSION} (Do not change this line. It is automatically modified by the build process)\"\nsed -i'' -r \"s/${oldVersion}/${newVersion}/g\" Analytics/Analytics.h\n\n# Update the version in Analytics.podspec\noldVersion=\"s.version = .*\"\nnewVersion=\"s.version = \\\"${ANALYTICS_VERSION}\\\"\"\nsed -i'' -r \"s/${oldVersion}/${newVersion}/g\" Analytics.podspec\n";
16001600
};
16011601
F7DFF836C131403D8AD86562 /* Check Pods Manifest.lock */ = {
16021602
isa = PBXShellScriptBuildPhase;
@@ -1777,7 +1777,7 @@
17771777
isa = XCBuildConfiguration;
17781778
buildSettings = {
17791779
ALWAYS_SEARCH_USER_PATHS = NO;
1780-
ANALYTICS_VERSION = 1.11.8;
1780+
ANALYTICS_VERSION = 1.11.9;
17811781
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
17821782
CLANG_CXX_LIBRARY = "libc++";
17831783
CLANG_ENABLE_OBJC_ARC = YES;
@@ -1809,7 +1809,7 @@
18091809
isa = XCBuildConfiguration;
18101810
buildSettings = {
18111811
ALWAYS_SEARCH_USER_PATHS = NO;
1812-
ANALYTICS_VERSION = 1.11.8;
1812+
ANALYTICS_VERSION = 1.11.9;
18131813
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
18141814
CLANG_CXX_LIBRARY = "libc++";
18151815
CLANG_ENABLE_OBJC_ARC = YES;

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.8 (Do not change this line. It is automatically modified by the build process)
3+
// Version 1.11.9 (Do not change this line. It is automatically modified by the build process)
44

55
#import "SEGAnalytics.h"

History.md

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

2+
1.11.9 / 2015-05-18
3+
===================
4+
5+
* seg: remove use of mutable traits, use immutable live context
6+
* Merge pull request #313 from segmentio/send-context.traits
7+
* Send context.traits
8+
* Bump pod
9+
* Merge pull request #311 from jonathannorris/Taplytics-2.1.86
10+
* Updated Taplytics to 2.1.86
11+
212
1.11.8 / 2015-05-11
313
===================
414

Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ SPEC CHECKSUMS:
7575
TRVSDictionaryWithCaseInsensitivity: 51d2ccf52c6d645d27b63467a98fa02c556e01b0
7676
TRVSKit: cbc09d442ce631c6b0f9e4ee4fb666a96146e4b3
7777

78-
COCOAPODS: 0.37.1
78+
COCOAPODS: 0.36.3

scripts/cli/libexec/cli-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
cd "$_CLI_ROOT/../../"
77

8-
sed -i '' "s/ANALYTICS_VERSION =.*;/ANALYTICS_VERSION = $1;/" Analytics.xcodeproj/project.pbxproj
8+
sed -i'' -r "s/ANALYTICS_VERSION =.*;/ANALYTICS_VERSION = $1;/" Analytics.xcodeproj/project.pbxproj
99

1010

0 commit comments

Comments
 (0)