-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Project] Update Swift language version to 5.0 * [Misc] Remove redundant public access modifiers * [Misc] Update .swift-version file to 5.0 * [Misc] Update .travis.yml to use Xcode 10.2 * [Pods] Update podspec to use Swift 5.0 * [Misc] Update .travis.yml to use iOS 12.2
- Loading branch information
1 parent
6bd587c
commit 4a47549
Showing
8 changed files
with
34 additions
and
35 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 +1 @@ | ||
4.2 | ||
5.0 |
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,10 +1,10 @@ | ||
os: | ||
- osx | ||
language: generic | ||
osx_image: xcode10 | ||
osx_image: xcode10.2 | ||
script: | ||
# - xcrun instruments -t 'Blank' -l 10 -w "iPhone 6s (10.3)" | ||
- xcodebuild -scheme Example -configuration Debug -sdk iphonesimulator12.0 -destination "OS=12.0,name=iPhone 6s" build | ||
- xcodebuild -scheme TABResourceLoader -configuration Debug -sdk iphonesimulator12.0 -destination "OS=12.0,name=iPhone 6s" test -enableCodeCoverage YES | ||
- xcodebuild -scheme Example -configuration Debug -sdk iphonesimulator12.2 -destination "OS=12.2,name=iPhone Xs" build | ||
- xcodebuild -scheme TABResourceLoader -configuration Debug -sdk iphonesimulator12.2 -destination "OS=12.2,name=iPhone Xs" test -enableCodeCoverage YES | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |
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 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,7 +1,7 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'TABResourceLoader' | ||
spec.homepage = 'https://github.com/theappbusiness/TABResourceLoader' | ||
spec.version = '8.1.0' | ||
spec.version = '8.2.0' | ||
spec.license = { :type => 'MIT' } | ||
spec.authors = { 'Luciano Marisi' => '[email protected]' } | ||
spec.summary = 'Framework for loading resources from a network service' | ||
|
@@ -11,5 +11,5 @@ Pod::Spec.new do |spec| | |
} | ||
spec.source_files = 'Sources/**/*.swift' | ||
spec.ios.deployment_target = '8.0' | ||
spec.swift_version = '4.2' | ||
spec.swift_version = '5.0' | ||
end |
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 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