-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump target versions to fix `pod lint` warnings Disable watchos as it still doesn't as the fix has not been released
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SwiftSignalRClient" | ||
s.version = "0.9.1" | ||
s.version = "0.9.2" | ||
s.summary = "Swift SignalR Client for the ASP.Net Core version of SignalR." | ||
s.homepage = "https://github.com/moozzyk/SignalR-Client-Swift" | ||
s.license = { :type => "Attribution License", :file => "LICENSE" } | ||
s.source = { :git => "https://github.com/moozzyk/SignalR-Client-Swift.git", :tag => s.version.to_s } | ||
s.authors = { "Pawel Kadluczka" => "[email protected]" } | ||
s.social_media_url = "https://twitter.com/moozzyk" | ||
s.swift_version = "5.0" | ||
s.ios.deployment_target = "9.0" | ||
s.ios.deployment_target = "11.0" | ||
s.osx.deployment_target = "10.13" | ||
s.tvos.deployment_target = "9.0" | ||
s.watchos.deployment_target = "6.0" | ||
s.tvos.deployment_target = "11.0" | ||
# Issue once https://github.com/CocoaPods/CocoaPods/issues/11558 was fixed but not released | ||
# s.watchos.deployment_target = "6.0" | ||
s.source_files = "Sources/SignalRClient/*.swift" | ||
s.requires_arc = true | ||
end |