Skip to content

Commit

Permalink
Release 15.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
intercom-ios-release-robot committed Jul 4, 2023
1 parent 5e5f0c0 commit f510fab
Show file tree
Hide file tree
Showing 14 changed files with 65 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 15.0.2
###### Release Date: 3-07-2023

### 🚀 Enhancements
* Improved Intercom's networking code to ensure messaging is faster and more reliable.
* Fixed threading issues that were being logged when Xcode's `Thread Performance Checker` was enabled. Thanks to [everyone](https://community.intercom.com/mobile-sdks-24/the-error-about-incorrect-threads-using-in-xcode-14-120) who reported this in our Intercom Community.
* Made some small UI enhancements.
* Removed some errors about unarchiving that were showing up in the XCode console.
* dSYM files are now embedded within `Intercom.xcframework`.


## 15.0.1
###### Release Date: 23-06-2023

Expand Down
6 changes: 3 additions & 3 deletions Intercom.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Intercom'
s.version = '15.0.1'
s.version = '15.0.2'
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
s.authors = {"Brian Boyle"=>"[email protected]", "Katherine Brennan"=>"[email protected]", "Niamh Coleman"=>"[email protected]", "Karthik Maharajan Skandarajah"=>"[email protected]", "Mike McNamara"=>"[email protected]", "Matthew Pierce"=>"[email protected]"}
Expand All @@ -9,8 +9,8 @@ Pod::Spec.new do |s|
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate", "WebKit"]
s.library = "icucore", "xml2"
s.requires_arc = true
s.source = { :git => 'https://github.com/intercom/intercom-ios.git', :tag => s.version.to_s }
s.source = { :http => 'https://github.com/intercom/intercom-ios/releases/download/15.0.2/Intercom.xcframework.zip' }
s.platform = :ios, '13.0'
s.preserve_paths = 'Intercom.xcframework'
s.preserve_paths = 'Intercom.xcframework', 'dSYM'
s.vendored_frameworks = 'Intercom.xcframework'
end
14 changes: 9 additions & 5 deletions Intercom.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,35 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Intercom.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Intercom.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified Intercom.xcframework/ios-arm64/Intercom.framework/Info.plist
Binary file not shown.
Binary file modified Intercom.xcframework/ios-arm64/Intercom.framework/Intercom
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.io.intercom.com.Intercom</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>15.0.2</string>
<key>CFBundleVersion</key>
<string>15.0.2</string>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.apple.xcode.dsym.io.intercom.com.Intercom</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>dSYM</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>15.0.2</string>
<key>CFBundleVersion</key>
<string>15.0.2</string>
</dict>
</plist>
Binary file not shown.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "Intercom",
url: "https://github.com/intercom/intercom-ios/releases/download/15.0.1/Intercom.xcframework.zip",

This comment has been minimized.

Copy link
@MichaelCampbell

MichaelCampbell Jul 7, 2023

this change is causing the SPM package to not download. It doesn't seem like the values are being replaced automatically. Maybe a script wasn't run before it was published?

This comment has been minimized.

Copy link
@FelixHerrmann

FelixHerrmann Jul 7, 2023

Noticed it too, it's because the release/tag was create before the fix was merged... integrate the package via branch name instead of tag should be a temp fix

This comment has been minimized.

Copy link
@FelixHerrmann

FelixHerrmann Jul 7, 2023

Also we need GH Issues enabled here...

checksum: "c9bf483efeb5cc20d1a8eceede3eb1af9ba39277964259ac2b5d0c86b80a76d4"
url: "https://github.com/intercom/intercom-ios/releases/download/<INTERCOM_VERSION>/Intercom.xcframework.zip",
checksum: "<ZIP_CHECKSUM>"
),
]
)

0 comments on commit f510fab

Please sign in to comment.