File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed
Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1- // swift-tools-version:4.0
2- // The swift-tools-version declares the minimum version of Swift required to build this package.
1+ // swift-tools-version:5.1
32
43import PackageDescription
54let package = Package (
65 name: " Sica " ,
6+ platforms: [
7+ . iOS( . v9) ,
8+ . macOS( . v10_10) ,
9+ . tvOS( . v10)
10+ ] ,
711 products: [
812 . library(
913 name: " Sica " ,
@@ -14,5 +18,6 @@ let package = Package(
1418 name: " Sica " ,
1519 dependencies: [ ] ,
1620 path: " Sica/Source " )
17- ]
21+ ] ,
22+ swiftLanguageVersions: [ . v4_2, . v5]
1823)
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pod 'Sica'
6464Sica is available through ` SwiftPM ` , create ` Package.swift ` and add ` dependencies ` value
6565``` Package.swift
6666dependencies: [
67- .package (url : " https://github.com/cats-oss/Sica.git" , from : " 0.4.0 " )
67+ .package (url : " https://github.com/cats-oss/Sica.git" , from : " 0.4.1 " )
6868]
6969```
7070See also: [ GitHub - j-channings/swift-package-manager-ios: Example of how to use SPM v4 to manage iOS dependencies] ( https://github.com/j-channings/swift-package-manager-ios )
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = "Sica"
11- s . version = "0.4.0 "
11+ s . version = "0.4.1 "
1212 s . summary = "Sica can execute various animations sequentially or parallely"
1313 s . homepage = "https://github.com/cats-oss/Sica"
1414 s . license = { :type => "MIT" , :file => "LICENSE" }
Original file line number Diff line number Diff line change 77//
88
99import Foundation
10+ import QuartzCore
1011
1112private let _animatorAssociatedKey = UnsafeMutablePointer< UInt> . allocate( capacity: 1 )
1213
Original file line number Diff line number Diff line change 77//
88
99import Foundation
10+ import QuartzCore
1011
1112public struct FillMode {
1213 #if swift(>=4.2)
You can’t perform that action at this time.
0 commit comments