Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
4.6.0 (#190)
Browse files Browse the repository at this point in the history
* Generate .xcframework deps, upgrade dep versions

* Don’t use_frameworks! for CocoaPods
  • Loading branch information
pvzig committed Oct 11, 2020
1 parent a976858 commit c071f10
Show file tree
Hide file tree
Showing 233 changed files with 13,708 additions and 8,546 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@ SlackKit.xcworkspace
Carthage/Checkouts
Carthage/Build

# Swift Package Manager
.swiftpm/

*.resolved
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.3
5.2.4
4 changes: 2 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "daltoniam/Starscream" == 3.1.0
github "httpswift/swifter" == 1.4.6
github "daltoniam/Starscream" == 4.0.4
github "httpswift/swifter" == 1.5.0
2 changes: 1 addition & 1 deletion Examples/Leaderboard/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
.executable(name: "Leaderboard", targets: ["Leaderboard"]),
],
dependencies: [
.package(url: "https://github.com/pvzig/SlackKit", .upToNextMinor(from: "4.3.0"))
.package(url: "https://github.com/pvzig/SlackKit", .upToNextMinor(from: "4.6.0"))
],
targets: [
.target(name: "Leaderboard",
Expand Down
3 changes: 1 addition & 2 deletions Examples/Leaderboard/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
platform :osx, '10.11'

target 'Leaderboard' do
use_frameworks!
pod 'SlackKit', '>= 4.3.0'
pod 'SlackKit', '>= 4.6.0'
end
2 changes: 1 addition & 1 deletion Examples/Robot or Not Bot/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
.executable(name: "Robot or Not Bot", targets: ["Robot or Not Bot"]),
],
dependencies: [
.package(url: "https://github.com/pvzig/SlackKit", .upToNextMinor(from: "4.3.0"))
.package(url: "https://github.com/pvzig/SlackKit", .upToNextMinor(from: "4.6.0"))
],
targets: [
.target(name: "Robot or Not Bot",
Expand Down
3 changes: 1 addition & 2 deletions Examples/Robot or Not Bot/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
platform :osx, '10.11'

target 'Robot Or Not Bot' do
use_frameworks!
pod 'SlackKit', '>= 4.3.0'
pod 'SlackKit', '>= 4.6.0'
end

79 changes: 79 additions & 0 deletions Frameworks/Starscream.xcframework/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64_i386-simulator</string>
<key>LibraryPath</key>
<string>Starscream.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>i386</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>macos-x86_64</string>
<key>LibraryPath</key>
<string>Starscream.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-x86_64-simulator</string>
<key>LibraryPath</key>
<string>Starscream.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-armv7_arm64</string>
<key>LibraryPath</key>
<string>Starscream.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>armv7</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>Starscream.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>
Loading

0 comments on commit c071f10

Please sign in to comment.