-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI; Swift 5.2 is now minimum; Update dependencies (#110)
* Update CI; Swift 5.2 is now minimum; Update dependencies * Update Package.swift to better support differences between Swift 5.5 and prior
- Loading branch information
Showing
5 changed files
with
33 additions
and
90 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
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
This file was deleted.
Oops, something went wrong.
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
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,21 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SwiftJWT" | ||
s.version = "3.6.201" | ||
s.version = "4.0.0" | ||
s.summary = "An implementation of JSON Web Token using Swift." | ||
s.homepage = "https://github.com/Kitura/Swift-JWT" | ||
s.license = { :type => "Apache License, Version 2.0" } | ||
s.authors = 'IBM and the Kitura project authors' | ||
s.module_name = 'SwiftJWT' | ||
s.swift_version = '5.1' | ||
s.swift_version = '5.2' | ||
s.osx.deployment_target = "10.13" | ||
s.ios.deployment_target = "11.0" | ||
s.tvos.deployment_target = "11.0" | ||
s.watchos.deployment_target = "4.0" | ||
s.source = { :git => "https://github.com/Kitura/Swift-JWT.git", :tag => s.version } | ||
s.source_files = "Sources/**/*.swift" | ||
s.dependency 'BlueRSA', '~> 1.0.200' | ||
s.dependency 'BlueECC', '~> 1.1.0' | ||
s.dependency 'LoggerAPI', '~> 1.7.0' | ||
s.dependency 'KituraContracts', '~> 1.2.200' | ||
s.dependency 'BlueCryptor', '~> 2.0.1' | ||
s.dependency 'BlueECC', '~> 1.2.200' | ||
s.dependency 'LoggerAPI', '~> 2.0.0' | ||
s.dependency 'KituraContracts', '~> 2.0.1' | ||
end |