Skip to content

Commit

Permalink
Version 3.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreanor committed Oct 14, 2016
1 parent 6927d63 commit a4d36a9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Intercom

## 3.0.14 (2016-10-14)

* Improved compatibility with the new `UserNotifications` framework for iOS 10 push notifications (fixes [#184](https://github.com/intercom/intercom-ios/issues/184)).

## 3.0.13 (2016-10-7)

* Added `[Intercom presentMessageComposerWithInitialMessage:]` to allow pre-populating the message composer.
Expand Down
2 changes: 1 addition & 1 deletion Intercom.framework.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>3.0.13</string>
<string>3.0.14</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file modified Intercom.framework.dSYM/Contents/Resources/DWARF/Intercom
Binary file not shown.
4 changes: 2 additions & 2 deletions Intercom.framework/Headers/Intercom.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Intercom.h
// Intercom for iOS - Version 3.0.13
// Intercom for iOS - Version 3.0.14
//
// Created by Intercom on 8/01/2015.
// Copyright (c) 2014 Intercom. All rights reserved.
Expand All @@ -10,7 +10,7 @@
#import <UIKit/UIKit.h>

#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
#error This version (3.0.13) of Intercom for iOS supports iOS 8.0 upwards.
#error This version (3.0.14) of Intercom for iOS supports iOS 8.0 upwards.
#endif

NS_ASSUME_NONNULL_BEGIN
Expand Down
Binary file modified Intercom.framework/Info.plist
Binary file not shown.
Binary file modified Intercom.framework/Intercom
Binary file not shown.
1 change: 1 addition & 0 deletions Intercom.framework/Modules/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ framework module Intercom {
link framework "QuartzCore"
link framework "Security"
link framework "SystemConfiguration"
link framework "UserNotifications"
}
4 changes: 2 additions & 2 deletions Intercom.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = 'Intercom'
s.version = '3.0.13'
s.version = '3.0.14'
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
s.license = { :type => "Apache 2.0", :file => "Intercom/LICENSE" }
s.authors = {"Adam McCarthy"=>"[email protected]", "Brian Boyle"=>"[email protected]", "Conor O’Donnell"=>"[email protected]", "James Treanor"=>"[email protected]"}
s.homepage = 'https://github.com/intercom/intercom-ios'
s.description = 'The Intercom iOS SDK, for integrating Intercom into your iOS application. The SDK supports iOS 8, iOS 9 and iOS 10'
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate"]
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate", "UserNotifications"]
s.library = "icucore", "xml2"
s.requires_arc = true
s.source = { :http => "https://github.com/intercom/intercom-ios/releases/download/#{s.version}/CocoaPods.zip" }
Expand Down

0 comments on commit a4d36a9

Please sign in to comment.