Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Release 10.0.0 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
thmzacharias authored Jan 25, 2023
1 parent 7481c6c commit f02dd69
Show file tree
Hide file tree
Showing 21 changed files with 12 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#### Version 10.0.0
* [BREAKING] Added support for using the Thunderhead SDK with Xcode 14.0. The Thunderhead SDK now requires Xcode 14+ . For further details on this [see our readme](https://github.com/thunderheadone/one-sdk-ios#prerequisites).
* [BREAKING] Updated minimum deployment target to iOS 11.0.

#### Version 9.1.3
* [BUGFIX] Fixed a crash that was occuring when Thunderhead SDK is integrated into a RxSwift app using `UIScrollViewDelegate` [RxSwift](https://github.com/ReactiveX/RxSwift).

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "Thunderhead",
platforms: [
.iOS(.v9)
.iOS(.v11)
],
products: [
.library(
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ For native integration, simply follow the steps outlined under the installation

- Install the following:

* Xcode 13.0 or later
* Xcode 14.0 or later

* [CocoaPods](https://cocoapods.org) 1.10.0 or later

- Make sure that your project meets these requirements:

* Your project must target iOS 9 or later.
* Your project must target iOS 11 or later.

- Set up a physical iOS device or use the iOS simulator to run your app.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Thunderhead.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
Expand All @@ -22,13 +21,12 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Thunderhead.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Thunderhead.embeddedframework/ThunderheadBundle.bundle/Info.plist
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions Thunderhead.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@

Pod::Spec.new do |s|
s.name = "Thunderhead"
s.version = "9.1.3"
s.version = "10.0.0"
s.summary = "The Thunderhead SDK for iOS, for integrating the ONE Engagement Hub or Interaction Studio into your iOS application."
s.authors = { "Thunderhead ONE" => "onesupport@thunderhead.com"}
s.homepage = "https://github.com/thunderheadone/one-sdk-ios"
s.description = "The Thunderhead SDK for iOS, for integrating ONE or Interaction Studio into your iOS application. The SDK supports iOS 9.0 and above."
s.description = "The Thunderhead SDK for iOS, for integrating ONE or Interaction Studio into your iOS application. The SDK supports iOS 11.0 and above."
s.license = { :type => "Commercial", :text => "Copyright (c) 2020 Thunderhead One Inc. All rights reserved." }
s.frameworks = ["Accelerate", "CoreLocation", "Foundation", "LocalAuthentication", "CoreGraphics", "MessageUI", "SafariServices", "Security", "SystemConfiguration", "UIKit", "WebKit"]
s.library = "sqlite3"
s.source = { :git => "https://github.com/thunderheadone/one-sdk-ios.git", :tag => "#{s.version}" }
s.platform = :ios, "9.0"
s.platform = :ios, "11.0"
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.preserve_paths = 'Thunderhead.embeddedframework/Thunderhead.xcframework'
Expand Down

0 comments on commit f02dd69

Please sign in to comment.