-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for macCatalyst and visionOS. Drop earlier version suppor…
…t. (#81)
- Loading branch information
Showing
14 changed files
with
254 additions
and
395 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'CacheAdvance' | ||
s.version = '1.2.5' | ||
s.version = '2.0.0' | ||
s.license = 'Apache License, Version 2.0' | ||
s.summary = 'A performant cache for logging systems. CacheAdvance persists log events 30x faster than SQLite.' | ||
s.homepage = 'https://github.com/dfed/CacheAdvance' | ||
s.authors = 'Dan Federman' | ||
s.source = { :git => 'https://github.com/dfed/CacheAdvance.git', :tag => s.version } | ||
s.swift_version = '5.1' | ||
s.swift_version = '5.6' | ||
s.source_files = 'Sources/**/*.{swift}', 'Sources/**/*.{h,m}' | ||
s.ios.deployment_target = '12.0' | ||
s.tvos.deployment_target = '12.0' | ||
s.watchos.deployment_target = '5.0' | ||
s.macos.deployment_target = '10.14' | ||
s.ios.deployment_target = '13.0' | ||
s.tvos.deployment_target = '13.0' | ||
s.watchos.deployment_target = '6.0' | ||
s.macos.deployment_target = '10.15' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// swift-tools-version:5.7 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CacheAdvance", | ||
platforms: [ | ||
.iOS(.v13), | ||
.tvOS(.v13), | ||
.watchOS(.v6), | ||
.macOS(.v10_15), | ||
.macCatalyst(.v13), | ||
], | ||
products: [ | ||
.library( | ||
name: "CacheAdvance", | ||
targets: ["CacheAdvance"] | ||
), | ||
.library( | ||
name: "CADCacheAdvance", | ||
targets: ["CADCacheAdvance"] | ||
) | ||
], | ||
targets: [ | ||
.target( | ||
name: "CacheAdvance", | ||
swiftSettings: [.define("SWIFT_PACKAGE_MANAGER")] | ||
), | ||
.testTarget( | ||
name: "CacheAdvanceTests", | ||
dependencies: ["CacheAdvance", "LorumIpsum"] | ||
), | ||
.target( | ||
name: "CADCacheAdvance", | ||
dependencies: ["CacheAdvance"], | ||
swiftSettings: [.define("SWIFT_PACKAGE_MANAGER")] | ||
), | ||
.target( | ||
name: "LorumIpsum", | ||
dependencies: [] | ||
), | ||
.testTarget( | ||
name: "CADCacheAdvanceTests", | ||
dependencies: ["CADCacheAdvance", "LorumIpsum"] | ||
), | ||
] | ||
) |
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,48 @@ | ||
// swift-tools-version:5.8 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CacheAdvance", | ||
platforms: [ | ||
.iOS(.v13), | ||
.tvOS(.v13), | ||
.watchOS(.v6), | ||
.macOS(.v10_15), | ||
.macCatalyst(.v13), | ||
], | ||
products: [ | ||
.library( | ||
name: "CacheAdvance", | ||
targets: ["CacheAdvance"] | ||
), | ||
.library( | ||
name: "CADCacheAdvance", | ||
targets: ["CADCacheAdvance"] | ||
) | ||
], | ||
targets: [ | ||
.target( | ||
name: "CacheAdvance", | ||
swiftSettings: [.define("SWIFT_PACKAGE_MANAGER")] | ||
), | ||
.testTarget( | ||
name: "CacheAdvanceTests", | ||
dependencies: ["CacheAdvance", "LorumIpsum"] | ||
), | ||
.target( | ||
name: "CADCacheAdvance", | ||
dependencies: ["CacheAdvance"], | ||
swiftSettings: [.define("SWIFT_PACKAGE_MANAGER")] | ||
), | ||
.target( | ||
name: "LorumIpsum", | ||
dependencies: [] | ||
), | ||
.testTarget( | ||
name: "CADCacheAdvanceTests", | ||
dependencies: ["CADCacheAdvance", "LorumIpsum"] | ||
), | ||
] | ||
) |
Oops, something went wrong.