This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from spring-media/feature/swift-package-manager
Swift Package Manager Support
- Loading branch information
Showing
186 changed files
with
2,480 additions
and
2,159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Sources | ||
sonar.sources=Sources | ||
|
||
## Tests | ||
sonar.tests=Tests |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.10.0 | ||
- Swift Package Manager Support | ||
- Xcode 11.5 Migration | ||
|
||
## 0.9 | ||
|
||
**Breaking changes** | ||
|
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 |
---|---|---|
|
@@ -7,24 +7,24 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "Carlos" | ||
s.version = "0.9.1" | ||
s.version = "0.10.0" | ||
s.summary = "A simple but flexible cache." | ||
s.description = <<-DESC | ||
Carlos is a small set of classes convenience operators to realize custom, flexible and powerful cache layers in your iOS, watchOS 2, tvOS and Mac OS X applications. | ||
Carlos is a small set of classes convenience operators to realize custom, flexible and powerful cache layers in your iOS, watchOS 3, tvOS and Mac OS X applications. | ||
DESC | ||
s.homepage = "https://github.com/WeltN24/Carlos" | ||
s.homepage = "https://github.com/spring-media/Carlos" | ||
s.license = 'MIT' | ||
s.author = { "Vittorio Monaco" => "[email protected]" } | ||
s.source = { :git => "https://github.com/WeltN24/Carlos.git", :tag => s.version.to_s } | ||
s.source = { :git => "https://github.com/spring-media/Carlos.git", :tag => s.version.to_s } | ||
s.swift_version = '5.0' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.watchos.deployment_target = '2.0' | ||
|
||
s.requires_arc = true | ||
|
||
s.dependency 'PiedPiper', '~> 0.10.1' | ||
s.ios.deployment_target = '10.0' | ||
s.watchos.deployment_target = '3.0' | ||
|
||
s.ios.source_files = 'Carlos/*.swift', 'Carlos/NSKeyedUnarchiver+SwiftUtilities.{h,m}' | ||
s.watchos.source_files = 'Carlos/*.swift', 'Carlos/NSKeyedUnarchiver+SwiftUtilities.{h,m}' | ||
s.source_files = 'Carlos/*.swift' | ||
s.watchos.exclude_files = 'Carlos/MemoryWarning.swift' | ||
|
||
s.dependency 'PiedPiper', '~> 0.11.0' | ||
|
||
s.requires_arc = true | ||
end |
Oops, something went wrong.