Skip to content

Commit a4d36a9

Browse files
committed
Version 3.0.14
1 parent 6927d63 commit a4d36a9

File tree

8 files changed

+10
-5
lines changed

8 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Intercom
22

3+
## 3.0.14 (2016-10-14)
4+
5+
* Improved compatibility with the new `UserNotifications` framework for iOS 10 push notifications (fixes [#184](https://github.com/intercom/intercom-ios/issues/184)).
6+
37
## 3.0.13 (2016-10-7)
48

59
* Added `[Intercom presentMessageComposerWithInitialMessage:]` to allow pre-populating the message composer.

Intercom.framework.dSYM/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>3.0.13</string>
16+
<string>3.0.14</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>
27.1 KB
Binary file not shown.

Intercom.framework/Headers/Intercom.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Intercom.h
3-
// Intercom for iOS - Version 3.0.13
3+
// Intercom for iOS - Version 3.0.14
44
//
55
// Created by Intercom on 8/01/2015.
66
// Copyright (c) 2014 Intercom. All rights reserved.
@@ -10,7 +10,7 @@
1010
#import <UIKit/UIKit.h>
1111

1212
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
13-
#error This version (3.0.13) of Intercom for iOS supports iOS 8.0 upwards.
13+
#error This version (3.0.14) of Intercom for iOS supports iOS 8.0 upwards.
1414
#endif
1515

1616
NS_ASSUME_NONNULL_BEGIN

Intercom.framework/Info.plist

0 Bytes
Binary file not shown.

Intercom.framework/Intercom

33.1 KB
Binary file not shown.

Intercom.framework/Modules/module.modulemap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ framework module Intercom {
1919
link framework "QuartzCore"
2020
link framework "Security"
2121
link framework "SystemConfiguration"
22+
link framework "UserNotifications"
2223
}

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 = '3.0.13'
3+
s.version = '3.0.14'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
55
s.license = { :type => "Apache 2.0", :file => "Intercom/LICENSE" }
66
s.authors = {"Adam McCarthy"=>"[email protected]", "Brian Boyle"=>"[email protected]", "Conor O’Donnell"=>"[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 8, iOS 9 and iOS 10'
9-
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate"]
9+
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate", "UserNotifications"]
1010
s.library = "icucore", "xml2"
1111
s.requires_arc = true
1212
s.source = { :http => "https://github.com/intercom/intercom-ios/releases/download/#{s.version}/CocoaPods.zip" }

0 commit comments

Comments
 (0)