Skip to content

Commit 4ed8339

Browse files
committed
Version 2.3.1
1 parent 8a9eb4d commit 4ed8339

36 files changed

+30
-25
lines changed

CHANGES

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
= 2.3.1 (2015-07-20)
2+
3+
* Fixed issue where status bar color could be incorrect.
4+
* Made a change to improve message delivery times for apps without real time.
5+
16
= 2.3.0 (2015-06-24)
27

38
* Users can now send image attachments.
@@ -7,7 +12,7 @@
712
* Added `IntercomDidStartNewConversationNotification` as suggested in https://github.com/intercom/intercom-ios/issues/67.
813
* Ensure sessions are ended when your app is backgrounded.
914
* Renamed certs to fix https://github.com/intercom/intercom-cordova/issues/5.
10-
* Improved support for CocoPods Frameworks.
15+
* Improved support for CocoaPods Frameworks.
1116
* Added nullability modifiers to Intercom.h for improved Swift compatibility.
1217

1318
= 2.2.4 (2015-05-28)

Intercom.framework/Versions/A/Headers/Intercom.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
//
33
// Intercom.h
4-
// Intercom for iOS - Version 2.3
4+
// Intercom for iOS - Version 2.3.1
55
//
66
// Created by Intercom on 8/01/2015.
77
// Copyright (c) 2014 Intercom. All rights reserved.
@@ -11,7 +11,7 @@
1111
#import <UIKit/UIKit.h>
1212

1313
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0
14-
#error This version (2.3) of Intercom for iOS supports iOS 7.0 upwards.
14+
#error This version (2.3.1) of Intercom for iOS supports iOS 7.0 upwards.
1515
#endif
1616

1717
#if __has_feature(nullability)
69.9 KB
Binary file not shown.

Intercom.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = 'Intercom'
3-
s.version = '2.3.0'
3+
s.version = '2.3.1'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
55
s.license = { :type => "Apache license", :file => "LICENSE" }
66
s.authors = {"Adam McCarthy"=>"[email protected]", "James Treanor"=>"[email protected]"}
77
s.homepage = 'https://github.com/intercom/intercom-ios'
88
s.description = 'The Intercom iOS SDK, for integrating Intercom into your iOS application. The SDK supports iOS 7 and iOS 8.'
9-
s.frameworks = ["Foundation", "UIKit", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", 'AssetsLibrary']
9+
s.frameworks = ["Foundation", "UIKit", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", 'AssetsLibrary', 'CFNetwork']
1010
s.library = "icucore"
1111
s.requires_arc = true
1212
s.source = { :git => 'https://github.com/intercom/intercom-ios.git', :tag => s.version.to_s }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the Intercom pod into your Podfile and run a `pod install` or `pod update`.
1414

1515
2. Intercom is a framework, so be sure to import Intercom correctly using the following `#import <Intercom/Intercom.h>` statement.
1616

17-
3. Under Build Phases, Link Binary with Libraries, make sure you are linking the following: `ImageIO`, `MobileCoreServices`, `SystemConfiguration`, `AudioToolbox`, `QuartzCore`, `Security`, `CoreGraphics`, `AssetsLibrary` and `libicucore.dylib`.
17+
3. Under Build Phases, Link Binary with Libraries, make sure you are linking the following: `ImageIO`, `MobileCoreServices`, `SystemConfiguration`, `AudioToolbox`, `QuartzCore`, `Security`, `CoreGraphics`, `AssetsLibrary`, `CFNetwork` and `libicucore.dylib`.
1818

1919
4. Sometimes Xcode won't correctly add the `Intercom.bundle` so make sure to add it to your target's Copy Bundle Resources build phase. You will find the bundle in the `Intercom.framework/Versions/A/Resources` folder.
2020

-698 Bytes
Binary file not shown.
-7.34 KB
Binary file not shown.

io.intercom.Intercom-iOS-SDK-2.3.0.docset/Contents/Info.plist renamed to io.intercom.Intercom-iOS-SDK-2.3.1.docset/Contents/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>en</string>
77
<key>CFBundleIdentifier</key>
8-
<string>io.intercom.Intercom-iOS-SDK-2.3.0</string>
8+
<string>io.intercom.Intercom-iOS-SDK-2.3.1</string>
99
<key>CFBundleName</key>
10-
<string>Intercom iOS SDK 2.3.0 Documentation</string>
10+
<string>Intercom iOS SDK 2.3.1 Documentation</string>
1111
<key>CFBundleShortVersionString</key>
1212
<string>1.0</string>
1313
<key>CFBundleVersion</key>
@@ -17,7 +17,7 @@
1717

1818

1919
<key>DocSetFeedName</key>
20-
<string>Intercom iOS SDK 2.3.0 Documentation</string>
20+
<string>Intercom iOS SDK 2.3.1 Documentation</string>
2121

2222
<key>DocSetMinimumXcodeVersion</key>
2323
<string>3.0</string>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<div class="container" class="hide-in-xcode">
1515

1616
<h1 id="library-title">
17-
<a href="../index.html">Intercom iOS SDK 2.3.0 </a>
17+
<a href="../index.html">Intercom iOS SDK 2.3.1 </a>
1818
</h1>
1919

2020
<p id="developer-home">
@@ -80,7 +80,7 @@ <h1 class="title">ICMCompletion Block Reference</h1>
8080
<footer>
8181
<div class="footer-copyright">
8282

83-
<p class="copyright">Copyright &copy; 2015 Intercom. All rights reserved. Updated: 2015-06-24</p>
83+
<p class="copyright">Copyright &copy; 2015 Intercom. All rights reserved. Updated: 2015-07-20</p>
8484

8585

8686
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1333)</a>.</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<div class="container" class="hide-in-xcode">
1515

1616
<h1 id="library-title">
17-
<a href="../index.html">Intercom iOS SDK 2.3.0 </a>
17+
<a href="../index.html">Intercom iOS SDK 2.3.1 </a>
1818
</h1>
1919

2020
<p id="developer-home">
@@ -2024,7 +2024,7 @@ <h4 class="method-subtitle">Declared In</h4>
20242024
<footer>
20252025
<div class="footer-copyright">
20262026

2027-
<p class="copyright">Copyright &copy; 2015 Intercom. All rights reserved. Updated: 2015-06-24</p>
2027+
<p class="copyright">Copyright &copy; 2015 Intercom. All rights reserved. Updated: 2015-07-20</p>
20282028

20292029

20302030
<p class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2.1 (build 1333)</a>.</p>

0 commit comments

Comments
 (0)